diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 17:51:49 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 17:51:49 +0000 |
commit | e9273e19ac50bb20ea9bdcb0a65935bbf5cdd545 (patch) | |
tree | b7596ac00576f552970d869e48f0517448fa70e4 /chrome/browser/ui/webui/ntp/android/context_menu_handler.cc | |
parent | 6463f823d8a7e915d2ae0f473aabe599c73fdc30 (diff) | |
download | chromium_src-e9273e19ac50bb20ea9bdcb0a65935bbf5cdd545.zip chromium_src-e9273e19ac50bb20ea9bdcb0a65935bbf5cdd545.tar.gz chromium_src-e9273e19ac50bb20ea9bdcb0a65935bbf5cdd545.tar.bz2 |
Replace some string16's with base namespace in chrome/browser
TBR=sky
Review URL: https://codereview.chromium.org/101953005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/ntp/android/context_menu_handler.cc')
-rw-r--r-- | chrome/browser/ui/webui/ntp/android/context_menu_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/webui/ntp/android/context_menu_handler.cc b/chrome/browser/ui/webui/ntp/android/context_menu_handler.cc index 7c916f4..328be22 100644 --- a/chrome/browser/ui/webui/ntp/android/context_menu_handler.cc +++ b/chrome/browser/ui/webui/ntp/android/context_menu_handler.cc @@ -126,7 +126,7 @@ void ContextMenuHandler::HandleOpenInIncognitoTab(const ListValue* args) { void ContextMenuHandler::OpenUrl(const ListValue* args, WindowOpenDisposition disposition) { - string16 url = ExtractStringValue(args); + base::string16 url = ExtractStringValue(args); if (!url.empty()) { web_ui()->GetWebContents()->OpenURL(content::OpenURLParams( GURL(url), content::Referrer(), disposition, |