summaryrefslogtreecommitdiffstats
path: root/chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc
diff options
context:
space:
mode:
authorpmonette <pmonette@chromium.org>2016-02-09 16:12:19 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-10 00:13:46 +0000
commit9fa59e8809740d5364b46e81f5503d1c7c90dd57 (patch)
treed759b3796e15c92bb03d91d4447a6f9d37dcdd1d /chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc
parent3497c50c52256d5f397579faf9c983d835c38d1d (diff)
downloadchromium_src-9fa59e8809740d5364b46e81f5503d1c7c90dd57.zip
chromium_src-9fa59e8809740d5364b46e81f5503d1c7c90dd57.tar.gz
chromium_src-9fa59e8809740d5364b46e81f5503d1c7c90dd57.tar.bz2
ShellIntegration is now a proper namespace.
This will make it easier to add code to the unnamed namespace in shell_integration.cc without prefixing everything with ShellIntegration::. Review URL: https://codereview.chromium.org/1682613002 Cr-Commit-Position: refs/heads/master@{#374541}
Diffstat (limited to 'chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc')
-rw-r--r--chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc b/chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc
index 180d838..11b1c17 100644
--- a/chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc
+++ b/chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc
@@ -151,10 +151,10 @@ void RecordStartupMetricsOnBlockingPool() {
#endif // defined(OS_MACOSX)
// Record whether Chrome is the default browser or not.
- ShellIntegration::DefaultWebClientState default_state =
- ShellIntegration::GetDefaultBrowser();
+ shell_integration::DefaultWebClientState default_state =
+ shell_integration::GetDefaultBrowser();
UMA_HISTOGRAM_ENUMERATION("DefaultBrowser.State", default_state,
- ShellIntegration::NUM_DEFAULT_STATES);
+ shell_integration::NUM_DEFAULT_STATES);
}
void RecordLinuxGlibcVersion() {