| OLD | NEW |
| 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/experiments_helper.h" | 16 #include "chrome/common/metrics/variations_util.h" |
| 17 #include "chrome/common/metrics/proto/profiler_event.pb.h" | 17 #include "chrome/common/metrics/proto/profiler_event.pb.h" |
| 18 #include "chrome/common/metrics/proto/system_profile.pb.h" | 18 #include "chrome/common/metrics/proto/system_profile.pb.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; |
| 29 using tracked_objects::ProcessDataSnapshot; | 29 using tracked_objects::ProcessDataSnapshot; |
| 30 using tracked_objects::TaskSnapshot; | 30 using tracked_objects::TaskSnapshot; |
| 31 | 31 |
| 32 namespace { | 32 namespace { |
| 33 | 33 |
| 34 const char kClientId[] = "bogus client ID"; | 34 const char kClientId[] = "bogus client ID"; |
| 35 const int kSessionId = 127; | 35 const int kSessionId = 127; |
| 36 const int kScreenWidth = 1024; | 36 const int kScreenWidth = 1024; |
| 37 const int kScreenHeight = 768; | 37 const int kScreenHeight = 768; |
| 38 const int kScreenCount = 3; | 38 const int kScreenCount = 3; |
| 39 const experiments_helper::SelectedGroupId kFieldTrialIds[] = { | 39 const chrome_variations::SelectedGroupId kFieldTrialIds[] = { |
| 40 {37, 43}, | 40 {37, 43}, |
| 41 {13, 47}, | 41 {13, 47}, |
| 42 {23, 17} | 42 {23, 17} |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 class TestMetricsLog : public MetricsLog { | 45 class TestMetricsLog : public MetricsLog { |
| 46 public: | 46 public: |
| 47 TestMetricsLog(const std::string& client_id, int session_id) | 47 TestMetricsLog(const std::string& client_id, int session_id) |
| 48 : MetricsLog(client_id, session_id) { | 48 : MetricsLog(client_id, session_id) { |
| 49 chrome::RegisterLocalState(&prefs_); | 49 chrome::RegisterLocalState(&prefs_); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 68 const metrics::SystemProfileProto& system_profile() const { | 68 const metrics::SystemProfileProto& system_profile() const { |
| 69 return uma_proto().system_profile(); | 69 return uma_proto().system_profile(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 virtual std::string GetCurrentTimeString() OVERRIDE { | 73 virtual std::string GetCurrentTimeString() OVERRIDE { |
| 74 return std::string(); | 74 return std::string(); |
| 75 } | 75 } |
| 76 | 76 |
| 77 virtual void GetFieldTrialIds( | 77 virtual void GetFieldTrialIds( |
| 78 std::vector<experiments_helper::SelectedGroupId>* field_trial_ids) const | 78 std::vector<chrome_variations::SelectedGroupId>* field_trial_ids) const |
| 79 OVERRIDE { | 79 OVERRIDE { |
| 80 ASSERT_TRUE(field_trial_ids->empty()); | 80 ASSERT_TRUE(field_trial_ids->empty()); |
| 81 | 81 |
| 82 for (size_t i = 0; i < arraysize(kFieldTrialIds); ++i) { | 82 for (size_t i = 0; i < arraysize(kFieldTrialIds); ++i) { |
| 83 field_trial_ids->push_back(kFieldTrialIds[i]); | 83 field_trial_ids->push_back(kFieldTrialIds[i]); |
| 84 } | 84 } |
| 85 } | 85 } |
| 86 | 86 |
| 87 virtual gfx::Size GetScreenSize() const OVERRIDE { | 87 virtual gfx::Size GetScreenSize() const OVERRIDE { |
| 88 return gfx::Size(kScreenWidth, kScreenHeight); | 88 return gfx::Size(kScreenWidth, kScreenHeight); |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 EXPECT_NE(std::string::npos, | 295 EXPECT_NE(std::string::npos, |
| 296 encoded.find(" childprocesscrashcount=\"10\"")); | 296 encoded.find(" childprocesscrashcount=\"10\"")); |
| 297 EXPECT_EQ(std::string::npos, | 297 EXPECT_EQ(std::string::npos, |
| 298 encoded.find(" otherusercrashcount=")); | 298 encoded.find(" otherusercrashcount=")); |
| 299 EXPECT_EQ(std::string::npos, | 299 EXPECT_EQ(std::string::npos, |
| 300 encoded.find(" kernelcrashcount=")); | 300 encoded.find(" kernelcrashcount=")); |
| 301 EXPECT_EQ(std::string::npos, | 301 EXPECT_EQ(std::string::npos, |
| 302 encoded.find(" systemuncleanshutdowns=")); | 302 encoded.find(" systemuncleanshutdowns=")); |
| 303 } | 303 } |
| 304 #endif // OS_CHROMEOS | 304 #endif // OS_CHROMEOS |
| OLD | NEW |