diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-11 23:47:53 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-11 23:47:53 +0000 |
commit | 7acf63cef0c03ed87b5f9f389a6b2b1828039b87 (patch) | |
tree | e23894c09c9e8afd254cb7e122bbac80ac89c613 /chrome/browser | |
parent | 4179a9875f1dfbe3f7c0b5aad34eed1abd94d352 (diff) | |
download | chromium_src-7acf63cef0c03ed87b5f9f389a6b2b1828039b87.zip chromium_src-7acf63cef0c03ed87b5f9f389a6b2b1828039b87.tar.gz chromium_src-7acf63cef0c03ed87b5f9f389a6b2b1828039b87.tar.bz2 |
cocoa: Replace "using namespace l10n_util;" by "using l10n_util::GetNSString;".
BUG=82078
TEST=None
R=avi@chromium.org
Review URL: http://codereview.chromium.org/7015010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85075 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/ui/cocoa/applescript/error_applescript.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/cocoa/applescript/error_applescript.mm b/chrome/browser/ui/cocoa/applescript/error_applescript.mm index 1c9d72b..327c57f 100644 --- a/chrome/browser/ui/cocoa/applescript/error_applescript.mm +++ b/chrome/browser/ui/cocoa/applescript/error_applescript.mm @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -9,7 +9,7 @@ #include "ui/base/l10n/l10n_util_mac.h" void AppleScript::SetError(AppleScript::ErrorCode errorCode) { - using namespace l10n_util; + using l10n_util::GetNSString; NSScriptCommand* current_command = [NSScriptCommand currentCommand]; [current_command setScriptErrorNumber:(int)errorCode]; NSString* error_string = @""; |