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 "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 Loading... |
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 Loading... |
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 } |
OLD | NEW |