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

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

Issue 5606002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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/memory_purger.cc ('k') | chrome/browser/metrics/user_metrics.cc » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 5
6 6
7 //------------------------------------------------------------------------------ 7 //------------------------------------------------------------------------------
8 // Description of the life cycle of a instance of MetricsService. 8 // Description of the life cycle of a instance of MetricsService.
9 // 9 //
10 // OVERVIEW 10 // OVERVIEW
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 #include "base/values.h" 168 #include "base/values.h"
169 #include "chrome/browser/bookmarks/bookmark_model.h" 169 #include "chrome/browser/bookmarks/bookmark_model.h"
170 #include "chrome/browser/browser_list.h" 170 #include "chrome/browser/browser_list.h"
171 #include "chrome/browser/browser_process.h" 171 #include "chrome/browser/browser_process.h"
172 #include "chrome/browser/guid.h" 172 #include "chrome/browser/guid.h"
173 #include "chrome/browser/load_notification_details.h" 173 #include "chrome/browser/load_notification_details.h"
174 #include "chrome/browser/memory_details.h" 174 #include "chrome/browser/memory_details.h"
175 #include "chrome/browser/metrics/histogram_synchronizer.h" 175 #include "chrome/browser/metrics/histogram_synchronizer.h"
176 #include "chrome/browser/metrics/metrics_log.h" 176 #include "chrome/browser/metrics/metrics_log.h"
177 #include "chrome/browser/prefs/pref_service.h" 177 #include "chrome/browser/prefs/pref_service.h"
178 #include "chrome/browser/profile.h" 178 #include "chrome/browser/profiles/profile.h"
179 #include "chrome/browser/renderer_host/render_process_host.h" 179 #include "chrome/browser/renderer_host/render_process_host.h"
180 #include "chrome/browser/search_engines/template_url_model.h" 180 #include "chrome/browser/search_engines/template_url_model.h"
181 #include "chrome/common/child_process_info.h" 181 #include "chrome/common/child_process_info.h"
182 #include "chrome/common/child_process_logging.h" 182 #include "chrome/common/child_process_logging.h"
183 #include "chrome/common/chrome_switches.h" 183 #include "chrome/common/chrome_switches.h"
184 #include "chrome/common/notification_service.h" 184 #include "chrome/common/notification_service.h"
185 #include "chrome/common/pref_names.h" 185 #include "chrome/common/pref_names.h"
186 #include "chrome/common/render_messages.h" 186 #include "chrome/common/render_messages.h"
187 #include "webkit/glue/plugins/plugin_list.h" 187 #include "webkit/glue/plugins/plugin_list.h"
188 #include "webkit/glue/plugins/webplugininfo.h" 188 #include "webkit/glue/plugins/webplugininfo.h"
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after
1906 thread_id = PlatformThread::CurrentId(); 1906 thread_id = PlatformThread::CurrentId();
1907 return PlatformThread::CurrentId() == thread_id; 1907 return PlatformThread::CurrentId() == thread_id;
1908 } 1908 }
1909 1909
1910 #if defined(OS_CHROMEOS) 1910 #if defined(OS_CHROMEOS)
1911 void MetricsService::StartExternalMetrics() { 1911 void MetricsService::StartExternalMetrics() {
1912 external_metrics_ = new chromeos::ExternalMetrics; 1912 external_metrics_ = new chromeos::ExternalMetrics;
1913 external_metrics_->Start(); 1913 external_metrics_->Start();
1914 } 1914 }
1915 #endif 1915 #endif
OLDNEW
« no previous file with comments | « chrome/browser/memory_purger.cc ('k') | chrome/browser/metrics/user_metrics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698