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

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

Issue 12079097: Introduce PrefRegistrySyncable, simplifying PrefServiceSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add to PrefRegistrySyncable and PrefServiceSyncable to let sync know of pre-registered prefs. 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
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"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_.registry(), &prefs_); 53 chrome::RegisterLocalState(&prefs_, prefs_.registry());
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

Powered by Google App Engine
This is Rietveld 408576698