Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Side by Side Diff: chrome/browser/metrics/metrics_log_unittest.cc

Issue 11741003: Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix double registration in Chrome Frame test. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/metrics/metrics_log.cc ('k') | chrome/browser/metrics/metrics_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <string> 5 #include <string>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/port.h" 8 #include "base/port.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/stringprintf.h" 10 #include "base/stringprintf.h"
11 #include "base/time.h" 11 #include "base/time.h"
12 #include "base/tracked_objects.h" 12 #include "base/tracked_objects.h"
13 #include "chrome/browser/google/google_util.h" 13 #include "chrome/browser/google/google_util.h"
14 #include "chrome/browser/metrics/metrics_log.h" 14 #include "chrome/browser/metrics/metrics_log.h"
15 #include "chrome/browser/prefs/browser_prefs.h" 15 #include "chrome/browser/prefs/browser_prefs.h"
16 #include "chrome/browser/prefs/pref_service.h" 16 #include "chrome/browser/prefs/pref_service.h"
17 #include "chrome/common/metrics/variations/variations_util.h"
18 #include "chrome/common/metrics/proto/profiler_event.pb.h" 17 #include "chrome/common/metrics/proto/profiler_event.pb.h"
19 #include "chrome/common/metrics/proto/system_profile.pb.h" 18 #include "chrome/common/metrics/proto/system_profile.pb.h"
19 #include "chrome/common/metrics/variations/variations_util.h"
20 #include "chrome/common/pref_names.h" 20 #include "chrome/common/pref_names.h"
21 #include "chrome/installer/util/google_update_settings.h" 21 #include "chrome/installer/util/google_update_settings.h"
22 #include "chrome/test/base/testing_pref_service.h" 22 #include "chrome/test/base/testing_pref_service.h"
23 #include "googleurl/src/gurl.h" 23 #include "googleurl/src/gurl.h"
24 #include "testing/gtest/include/gtest/gtest.h" 24 #include "testing/gtest/include/gtest/gtest.h"
25 #include "ui/gfx/size.h" 25 #include "ui/gfx/size.h"
26 #include "webkit/plugins/webplugininfo.h" 26 #include "webkit/plugins/webplugininfo.h"
27 27
28 using base::TimeDelta; 28 using base::TimeDelta;
29 using metrics::ProfilerEventProto; 29 using metrics::ProfilerEventProto;
(...skipping 13 matching lines...) Expand all
43 {37, 43}, 43 {37, 43},
44 {13, 47}, 44 {13, 47},
45 {23, 17} 45 {23, 17}
46 }; 46 };
47 47
48 class TestMetricsLog : public MetricsLog { 48 class TestMetricsLog : public MetricsLog {
49 public: 49 public:
50 TestMetricsLog(const std::string& client_id, int session_id) 50 TestMetricsLog(const std::string& client_id, int session_id)
51 : MetricsLog(client_id, session_id), 51 : MetricsLog(client_id, session_id),
52 brand_for_testing_(kBrandForTesting) { 52 brand_for_testing_(kBrandForTesting) {
53 chrome::RegisterLocalState(&prefs_); 53 chrome::RegisterLocalState(prefs_.registry(), &prefs_);
54 54
55 #if defined(OS_CHROMEOS) 55 #if defined(OS_CHROMEOS)
56 prefs_.SetInteger(prefs::kStabilityChildProcessCrashCount, 10); 56 prefs_.SetInteger(prefs::kStabilityChildProcessCrashCount, 10);
57 prefs_.SetInteger(prefs::kStabilityOtherUserCrashCount, 11); 57 prefs_.SetInteger(prefs::kStabilityOtherUserCrashCount, 11);
58 prefs_.SetInteger(prefs::kStabilityKernelCrashCount, 12); 58 prefs_.SetInteger(prefs::kStabilityKernelCrashCount, 12);
59 prefs_.SetInteger(prefs::kStabilitySystemUncleanShutdownCount, 13); 59 prefs_.SetInteger(prefs::kStabilitySystemUncleanShutdownCount, 13);
60 #endif // OS_CHROMEOS 60 #endif // OS_CHROMEOS
61 } 61 }
62 virtual ~TestMetricsLog() {} 62 virtual ~TestMetricsLog() {}
63 63
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 EXPECT_NE(std::string::npos, 314 EXPECT_NE(std::string::npos,
315 encoded.find(" childprocesscrashcount=\"10\"")); 315 encoded.find(" childprocesscrashcount=\"10\""));
316 EXPECT_EQ(std::string::npos, 316 EXPECT_EQ(std::string::npos,
317 encoded.find(" otherusercrashcount=")); 317 encoded.find(" otherusercrashcount="));
318 EXPECT_EQ(std::string::npos, 318 EXPECT_EQ(std::string::npos,
319 encoded.find(" kernelcrashcount=")); 319 encoded.find(" kernelcrashcount="));
320 EXPECT_EQ(std::string::npos, 320 EXPECT_EQ(std::string::npos,
321 encoded.find(" systemuncleanshutdowns=")); 321 encoded.find(" systemuncleanshutdowns="));
322 } 322 }
323 #endif // OS_CHROMEOS 323 #endif // OS_CHROMEOS
OLDNEW
« no previous file with comments | « chrome/browser/metrics/metrics_log.cc ('k') | chrome/browser/metrics/metrics_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698