summaryrefslogtreecommitdiffstats
path: root/tools/set_default_handler
diff options
context:
space:
mode:
authordbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-19 20:02:59 +0000
committerdbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-19 20:02:59 +0000
commit163a6a67eafa219258eeb2bdcc8fcb6c54fc1399 (patch)
treed2d269c41c0c55b54031d8018312f9ef9306fc81 /tools/set_default_handler
parent07e3f79f33cc6bef0ca636f2b9742391ed04a5cd (diff)
downloadchromium_src-163a6a67eafa219258eeb2bdcc8fcb6c54fc1399.zip
chromium_src-163a6a67eafa219258eeb2bdcc8fcb6c54fc1399.tar.gz
chromium_src-163a6a67eafa219258eeb2bdcc8fcb6c54fc1399.tar.bz2
Add base:: to string16s in tools/.
R=grt@chromium.org BUG=329295 Review URL: https://codereview.chromium.org/99363007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241925 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/set_default_handler')
-rw-r--r--tools/set_default_handler/set_default_handler_main.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/set_default_handler/set_default_handler_main.cc b/tools/set_default_handler/set_default_handler_main.cc
index 98e50a9..e02b140 100644
--- a/tools/set_default_handler/set_default_handler_main.cc
+++ b/tools/set_default_handler/set_default_handler_main.cc
@@ -41,15 +41,15 @@ int wmain(int argc, wchar_t* argv[]) {
ui::win::CreateATLModuleIfNeeded();
CommandLine* command_line = CommandLine::ForCurrentProcess();
- string16 protocol(command_line->GetSwitchValueNative(kSwitchProtocol));
+ base::string16 protocol(command_line->GetSwitchValueNative(kSwitchProtocol));
if (protocol.empty())
protocol = kDefaultProtocol;
- string16 program(command_line->GetSwitchValueNative(kSwitchProgram));
+ base::string16 program(command_line->GetSwitchValueNative(kSwitchProgram));
if (program.empty())
program = kDefaultProgram;
- std::vector<string16> choices;
+ std::vector<base::string16> choices;
HRESULT result = S_OK;
win8::OpenWithDialogController controller;
result = controller.RunSynchronously(NULL, protocol, program, &choices);