summaryrefslogtreecommitdiffstats
path: root/tools/set_default_handler
diff options
context:
space:
mode:
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);