summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/external_protocol_dialog.mm
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/ui/cocoa/external_protocol_dialog.mm
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/ui/cocoa/external_protocol_dialog.mm')
-rw-r--r--chrome/browser/ui/cocoa/external_protocol_dialog.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/cocoa/external_protocol_dialog.mm b/chrome/browser/ui/cocoa/external_protocol_dialog.mm
index 007259f..a3a7e94 100644
--- a/chrome/browser/ui/cocoa/external_protocol_dialog.mm
+++ b/chrome/browser/ui/cocoa/external_protocol_dialog.mm
@@ -51,7 +51,7 @@ void ExternalProtocolHandler::RunExternalProtocolDialog(
creation_time_ = base::Time::Now();
base::string16 appName =
- ShellIntegration::GetApplicationNameForProtocol(url_);
+ shell_integration::GetApplicationNameForProtocol(url_);
if (appName.length() == 0) {
// No registered apps for this protocol; give up and go home.
[self autorelease];