OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 const wchar_t kTestingChannelID[] = L"testing-channel"; | 59 const wchar_t kTestingChannelID[] = L"testing-channel"; |
60 | 60 |
61 // The value of this switch specifies which page will be displayed | 61 // The value of this switch specifies which page will be displayed |
62 // in newly-opened tabs. We need this for testing purposes so | 62 // in newly-opened tabs. We need this for testing purposes so |
63 // that the UI tests don't depend on what comes up for http://google.com. | 63 // that the UI tests don't depend on what comes up for http://google.com. |
64 const wchar_t kHomePage[] = L"homepage"; | 64 const wchar_t kHomePage[] = L"homepage"; |
65 | 65 |
66 // Causes the process to run as renderer instead of as browser. | 66 // Causes the process to run as renderer instead of as browser. |
67 const wchar_t kRendererProcess[] = L"renderer"; | 67 const wchar_t kRendererProcess[] = L"renderer"; |
68 | 68 |
69 // Path to the exe to run for the renderer subprocess | 69 // Path to the exe to run for the renderer and plugin subprocesses. |
70 const wchar_t kRendererPath[] = L"renderer-path"; | 70 const wchar_t kBrowserSubprocessPath[] = L"browser-subprocess-path"; |
71 | 71 |
72 // Causes the process to run as a plugin subprocess. | 72 // Causes the process to run as a plugin subprocess. |
73 const wchar_t kPluginProcess[] = L"plugin"; | 73 const wchar_t kPluginProcess[] = L"plugin"; |
74 | 74 |
75 // Causes the process to run as a worker subprocess. | 75 // Causes the process to run as a worker subprocess. |
76 const wchar_t kWorkerProcess[] = L"worker"; | 76 const wchar_t kWorkerProcess[] = L"worker"; |
77 | 77 |
78 // Runs the renderer and plugins in the same process as the browser | 78 // Runs the renderer and plugins in the same process as the browser |
79 const wchar_t kSingleProcess[] = L"single-process"; | 79 const wchar_t kSingleProcess[] = L"single-process"; |
80 | 80 |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 // Enables the bookmark menu. | 413 // Enables the bookmark menu. |
414 const wchar_t kBookmarkMenu[] = L"bookmark-menu"; | 414 const wchar_t kBookmarkMenu[] = L"bookmark-menu"; |
415 | 415 |
416 // Enables StatsTable, logging statistics to a global named shared memory table. | 416 // Enables StatsTable, logging statistics to a global named shared memory table. |
417 const wchar_t kEnableStatsTable[] = L"enable-stats-table"; | 417 const wchar_t kEnableStatsTable[] = L"enable-stats-table"; |
418 | 418 |
419 // Enables the Omnibox2 popup and functionality. | 419 // Enables the Omnibox2 popup and functionality. |
420 const wchar_t kEnableOmnibox2[] = L"enable-omnibox2"; | 420 const wchar_t kEnableOmnibox2[] = L"enable-omnibox2"; |
421 | 421 |
422 } // namespace switches | 422 } // namespace switches |
OLD | NEW |