Searched defs:system_profile (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/metrics/
H A Dextensions_metrics_provider_unittest.cc14 #include "components/metrics/proto/system_profile.pb.h"
104 metrics::SystemProfileProto system_profile; local
114 extension_metrics.ProvideSystemProfileMetrics(&system_profile);
115 ASSERT_EQ(2, system_profile.occupied_extension_bucket_size());
116 EXPECT_EQ(10, system_profile.occupied_extension_bucket(0));
117 EXPECT_EQ(1007, system_profile.occupied_extension_bucket(1));
H A Dchromeos_metrics_provider_unittest.cc23 #include "components/metrics/proto/system_profile.pb.h"
134 metrics::SystemProfileProto system_profile; local
135 provider.ProvideSystemProfileMetrics(&system_profile);
136 EXPECT_EQ(2u, system_profile.multi_profile_user_count());
156 metrics::SystemProfileProto system_profile; local
157 provider.ProvideSystemProfileMetrics(&system_profile);
158 EXPECT_EQ(1u, system_profile.multi_profile_user_count());
161 provider.ProvideSystemProfileMetrics(&system_profile);
162 EXPECT_EQ(0u, system_profile.multi_profile_user_count());
168 metrics::SystemProfileProto system_profile; local
185 metrics::SystemProfileProto system_profile; local
215 metrics::SystemProfileProto system_profile; local
[all...]
H A Dplugin_metrics_provider_unittest.cc16 #include "components/metrics/proto/system_profile.pb.h"
81 metrics::SystemProfileProto system_profile; local
82 provider.ProvideSystemProfileMetrics(&system_profile);
84 ASSERT_EQ(2, system_profile.plugin_size());
85 EXPECT_EQ("p1", system_profile.plugin(0).name());
86 EXPECT_EQ("p1.plugin", system_profile.plugin(0).filename());
87 EXPECT_EQ("1.5", system_profile.plugin(0).version());
88 EXPECT_TRUE(system_profile.plugin(0).is_pepper());
89 EXPECT_EQ("p2", system_profile.plugin(1).name());
90 EXPECT_EQ("p2.plugin", system_profile
165 metrics::SystemProfileProto system_profile; local
[all...]
H A Dextensions_metrics_provider.cc19 #include "components/metrics/proto/system_profile.pb.h"
43 // components/metrics/proto/system_profile.proto
176 metrics::SystemProfileProto* system_profile) {
177 ProvideOffStoreMetric(system_profile);
178 ProvideOccupiedBucketMetric(system_profile);
182 metrics::SystemProfileProto* system_profile) {
206 system_profile->set_offstore_extensions_state(ExtensionStateAsProto(state));
210 metrics::SystemProfileProto* system_profile) {
233 system_profile->add_occupied_extension_bucket(*it);
175 ProvideSystemProfileMetrics( metrics::SystemProfileProto* system_profile) argument
181 ProvideOffStoreMetric( metrics::SystemProfileProto* system_profile) argument
209 ProvideOccupiedBucketMetric( metrics::SystemProfileProto* system_profile) argument
/external/chromium_org/components/metrics/net/
H A Dnetwork_metrics_provider.cc44 SystemProfileProto* system_profile) {
45 SystemProfileProto::Network* network = system_profile->mutable_network();
43 ProvideSystemProfileMetrics( SystemProfileProto* system_profile) argument
/external/chromium_org/components/metrics/
H A Dmetrics_log_unittest.cc62 const metrics::SystemProfileProto& system_profile() const { function in class:metrics::__anon6583::TestMetricsLog
63 return uma_proto().system_profile();
103 void CheckSystemProfile(const metrics::SystemProfileProto& system_profile) { argument
104 EXPECT_EQ(kInstallDateExpected, system_profile.install_date());
105 EXPECT_EQ(kEnabledDateExpected, system_profile.uma_enabled_date());
108 static_cast<size_t>(system_profile.field_trial_size()));
111 system_profile.field_trial(i);
118 system_profile.field_trial(i + arraysize(kFieldTrialIds));
124 system_profile.brand_code());
127 system_profile
[all...]
H A Dmetrics_log.cc30 #include "components/metrics/proto/system_profile.pb.h"
75 SystemProfileProto* system_profile) {
79 system_profile->add_field_trial();
111 SystemProfileProto* system_profile = uma_proto_.mutable_system_profile(); local
112 system_profile->set_build_timestamp(GetBuildTime());
113 system_profile->set_app_version(client_->GetVersionString());
114 system_profile->set_channel(client_->GetChannel());
238 SystemProfileProto* system_profile = uma_proto()->mutable_system_profile(); local
240 metrics_providers[i]->ProvideStabilityMetrics(system_profile);
265 system_profile
74 WriteFieldTrials(const std::vector<ActiveGroupId>& field_trial_ids, SystemProfileProto* system_profile) argument
335 SystemProfileProto* system_profile = uma_proto()->mutable_system_profile(); local
420 SystemProfileProto* system_profile = uma_proto()->mutable_system_profile(); local
[all...]

Completed in 544 milliseconds