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

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

Issue 10828314: Move Variations stuff into variations/ directories and add OWNERS files for the variations client t… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add OWNERS files Created 8 years, 4 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 "chrome/browser/metrics/metrics_log.h" 5 #include "chrome/browser/metrics/metrics_log.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 16 matching lines...) Expand all
27 #include "chrome/browser/autocomplete/autocomplete_result.h" 27 #include "chrome/browser/autocomplete/autocomplete_result.h"
28 #include "chrome/browser/browser_process.h" 28 #include "chrome/browser/browser_process.h"
29 #include "chrome/browser/plugin_prefs.h" 29 #include "chrome/browser/plugin_prefs.h"
30 #include "chrome/browser/prefs/pref_service.h" 30 #include "chrome/browser/prefs/pref_service.h"
31 #include "chrome/browser/profiles/profile_manager.h" 31 #include "chrome/browser/profiles/profile_manager.h"
32 #include "chrome/common/chrome_version_info.h" 32 #include "chrome/common/chrome_version_info.h"
33 #include "chrome/common/logging_chrome.h" 33 #include "chrome/common/logging_chrome.h"
34 #include "chrome/common/metrics/proto/omnibox_event.pb.h" 34 #include "chrome/common/metrics/proto/omnibox_event.pb.h"
35 #include "chrome/common/metrics/proto/profiler_event.pb.h" 35 #include "chrome/common/metrics/proto/profiler_event.pb.h"
36 #include "chrome/common/metrics/proto/system_profile.pb.h" 36 #include "chrome/common/metrics/proto/system_profile.pb.h"
37 #include "chrome/common/metrics/variations_util.h" 37 #include "chrome/common/metrics/variations/variations_util.h"
38 #include "chrome/common/pref_names.h" 38 #include "chrome/common/pref_names.h"
39 #include "chrome/installer/util/google_update_settings.h" 39 #include "chrome/installer/util/google_update_settings.h"
40 #include "content/public/browser/content_browser_client.h" 40 #include "content/public/browser/content_browser_client.h"
41 #include "content/public/browser/gpu_data_manager.h" 41 #include "content/public/browser/gpu_data_manager.h"
42 #include "content/public/common/content_client.h" 42 #include "content/public/common/content_client.h"
43 #include "content/public/common/gpu_info.h" 43 #include "content/public/common/gpu_info.h"
44 #include "googleurl/src/gurl.h" 44 #include "googleurl/src/gurl.h"
45 #include "ui/gfx/screen.h" 45 #include "ui/gfx/screen.h"
46 #include "webkit/plugins/webplugininfo.h" 46 #include "webkit/plugins/webplugininfo.h"
47 47
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 ProductDataToProto(google_update_metrics.google_update_data, 1000 ProductDataToProto(google_update_metrics.google_update_data,
1001 google_update->mutable_google_update_status()); 1001 google_update->mutable_google_update_status());
1002 } 1002 }
1003 1003
1004 if (!google_update_metrics.product_data.version.empty()) { 1004 if (!google_update_metrics.product_data.version.empty()) {
1005 ProductDataToProto(google_update_metrics.product_data, 1005 ProductDataToProto(google_update_metrics.product_data,
1006 google_update->mutable_client_status()); 1006 google_update->mutable_client_status());
1007 } 1007 }
1008 #endif // defined(GOOGLE_CHROME_BUILD) && defined(OS_WIN) 1008 #endif // defined(GOOGLE_CHROME_BUILD) && defined(OS_WIN)
1009 } 1009 }
OLDNEW
« no previous file with comments | « chrome/browser/metrics/field_trial_synchronizer.cc ('k') | chrome/browser/metrics/metrics_log_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698