aboutsummaryrefslogtreecommitdiff
path: root/uploader/mock/mock_system_profile_setter.h
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2016-06-24 11:25:51 -0700
committerXin Li <delphij@google.com>2016-06-24 11:30:51 -0700
commitcaacd6905920128af1de8d7f93463eee88be1646 (patch)
tree1ad1513b968f01cb50fc929d5a972ed257d7ecb3 /uploader/mock/mock_system_profile_setter.h
parent3832b79f0895909cd4c655081e6ef70c8c334d5b (diff)
parent80b69d460f7c9f7a7c7434e29035739f325c33a2 (diff)
downloadmetricsd-caacd6905920128af1de8d7f93463eee88be1646.tar.gz
Merge branch 'rewrite-metricsd' into merge-metricsd
Initial import of metricsd from platform/system/core. BUG: 29548040
Diffstat (limited to 'uploader/mock/mock_system_profile_setter.h')
-rw-r--r--uploader/mock/mock_system_profile_setter.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/uploader/mock/mock_system_profile_setter.h b/uploader/mock/mock_system_profile_setter.h
new file mode 100644
index 0000000..9b20291
--- /dev/null
+++ b/uploader/mock/mock_system_profile_setter.h
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2015 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef METRICS_UPLOADER_MOCK_MOCK_SYSTEM_PROFILE_SETTER_H_
+#define METRICS_UPLOADER_MOCK_MOCK_SYSTEM_PROFILE_SETTER_H_
+
+#include "uploader/system_profile_setter.h"
+
+namespace metrics {
+class ChromeUserMetricsExtension;
+}
+
+// Mock profile setter used for testing.
+class MockSystemProfileSetter : public SystemProfileSetter {
+ public:
+ bool Populate(metrics::ChromeUserMetricsExtension* profile_proto) override {
+ return true;
+ }
+};
+
+#endif // METRICS_UPLOADER_MOCK_MOCK_SYSTEM_PROFILE_SETTER_H_