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

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: Switch to desired interfaces. Created 7 years, 11 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"
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/metrics/metrics_log.h" 13 #include "chrome/browser/metrics/metrics_log.h"
14 #include "chrome/browser/prefs/browser_prefs.h" 14 #include "chrome/browser/prefs/browser_prefs.h"
15 #include "chrome/browser/prefs/pref_service.h" 15 #include "chrome/browser/prefs/pref_service.h"
16 #include "chrome/common/metrics/variations/variations_util.h"
17 #include "chrome/common/metrics/proto/profiler_event.pb.h" 16 #include "chrome/common/metrics/proto/profiler_event.pb.h"
18 #include "chrome/common/metrics/proto/system_profile.pb.h" 17 #include "chrome/common/metrics/proto/system_profile.pb.h"
18 #include "chrome/common/metrics/variations/variations_util.h"
19 #include "chrome/common/pref_names.h" 19 #include "chrome/common/pref_names.h"
20 #include "chrome/installer/util/google_update_settings.h" 20 #include "chrome/installer/util/google_update_settings.h"
21 #include "chrome/test/base/testing_pref_service.h" 21 #include "chrome/test/base/testing_pref_service.h"
22 #include "googleurl/src/gurl.h" 22 #include "googleurl/src/gurl.h"
23 #include "testing/gtest/include/gtest/gtest.h" 23 #include "testing/gtest/include/gtest/gtest.h"
24 #include "ui/gfx/size.h" 24 #include "ui/gfx/size.h"
25 #include "webkit/plugins/webplugininfo.h" 25 #include "webkit/plugins/webplugininfo.h"
26 26
27 using base::TimeDelta; 27 using base::TimeDelta;
28 using metrics::ProfilerEventProto; 28 using metrics::ProfilerEventProto;
(...skipping 11 matching lines...) Expand all
40 const chrome_variations::ActiveGroupId kFieldTrialIds[] = { 40 const chrome_variations::ActiveGroupId kFieldTrialIds[] = {
41 {37, 43}, 41 {37, 43},
42 {13, 47}, 42 {13, 47},
43 {23, 17} 43 {23, 17}
44 }; 44 };
45 45
46 class TestMetricsLog : public MetricsLog { 46 class TestMetricsLog : public MetricsLog {
47 public: 47 public:
48 TestMetricsLog(const std::string& client_id, int session_id) 48 TestMetricsLog(const std::string& client_id, int session_id)
49 : MetricsLog(client_id, session_id) { 49 : MetricsLog(client_id, session_id) {
50 chrome::RegisterLocalState(&prefs_); 50 chrome::RegisterLocalState(prefs_.registry(), &prefs_);
51 51
52 #if defined(OS_CHROMEOS) 52 #if defined(OS_CHROMEOS)
53 prefs_.SetInteger(prefs::kStabilityChildProcessCrashCount, 10); 53 prefs_.SetInteger(prefs::kStabilityChildProcessCrashCount, 10);
54 prefs_.SetInteger(prefs::kStabilityOtherUserCrashCount, 11); 54 prefs_.SetInteger(prefs::kStabilityOtherUserCrashCount, 11);
55 prefs_.SetInteger(prefs::kStabilityKernelCrashCount, 12); 55 prefs_.SetInteger(prefs::kStabilityKernelCrashCount, 12);
56 prefs_.SetInteger(prefs::kStabilitySystemUncleanShutdownCount, 13); 56 prefs_.SetInteger(prefs::kStabilitySystemUncleanShutdownCount, 13);
57 #endif // OS_CHROMEOS 57 #endif // OS_CHROMEOS
58 } 58 }
59 virtual ~TestMetricsLog() {} 59 virtual ~TestMetricsLog() {}
60 60
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 EXPECT_NE(std::string::npos, 307 EXPECT_NE(std::string::npos,
308 encoded.find(" childprocesscrashcount=\"10\"")); 308 encoded.find(" childprocesscrashcount=\"10\""));
309 EXPECT_EQ(std::string::npos, 309 EXPECT_EQ(std::string::npos,
310 encoded.find(" otherusercrashcount=")); 310 encoded.find(" otherusercrashcount="));
311 EXPECT_EQ(std::string::npos, 311 EXPECT_EQ(std::string::npos,
312 encoded.find(" kernelcrashcount=")); 312 encoded.find(" kernelcrashcount="));
313 EXPECT_EQ(std::string::npos, 313 EXPECT_EQ(std::string::npos,
314 encoded.find(" systemuncleanshutdowns=")); 314 encoded.find(" systemuncleanshutdowns="));
315 } 315 }
316 #endif // OS_CHROMEOS 316 #endif // OS_CHROMEOS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698