diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-05 00:07:32 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-05 00:07:32 +0000 |
commit | cbfc8a890278ae5f0fcc6e54ac169a7e068449b1 (patch) | |
tree | b98195f008e29888bfc5a5fba02064a6de868bbd /chrome/service | |
parent | 0036b7f357445ff9d17fb5262f3d6b9a0000c0ec (diff) | |
download | chromium_src-cbfc8a890278ae5f0fcc6e54ac169a7e068449b1.zip chromium_src-cbfc8a890278ae5f0fcc6e54ac169a7e068449b1.tar.gz chromium_src-cbfc8a890278ae5f0fcc6e54ac169a7e068449b1.tar.bz2 |
Rename --enable-chromoting to --enable-remoting
Renaming the flag so we don't expose the internal name.
Review URL: http://codereview.chromium.org/3037043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55006 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/service_main.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/service/service_main.cc b/chrome/service/service_main.cc index e44521e..8994c12 100644 --- a/chrome/service/service_main.cc +++ b/chrome/service/service_main.cc @@ -62,7 +62,7 @@ int ServiceProcessMain(const MainFunctionParams& parameters) { scoped_refptr<remoting::JsonHostConfig> chromoting_config; scoped_ptr<remoting::ChromotingHostContext> chromoting_context; scoped_refptr<remoting::ChromotingHost> chromoting_host; - if (parameters.command_line_.HasSwitch(switches::kEnableChromoting)) { + if (parameters.command_line_.HasSwitch(switches::kEnableRemoting)) { chromoting_config = new remoting::JsonHostConfig( chromoting_config_path, service_process.file_thread()->message_loop_proxy()); @@ -94,4 +94,3 @@ int ServiceProcessMain(const MainFunctionParams& parameters) { return 0; } - |