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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 // The value of this switch tells the app to listen for and broadcast | 57 // The value of this switch tells the app to listen for and broadcast |
58 // testing-related messages on IPC channel with the given ID. | 58 // testing-related messages on IPC channel with the given ID. |
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 // When this switch is present, the browser will throw up a dialog box | |
67 // asking the user to start a renderer process independently rather | |
68 // than launching the renderer itself. (This is useful for debugging.) | |
69 const wchar_t kBrowserStartRenderersManually[] = L"start-renderers-manually"; | |
70 | |
71 // Causes the process to run as renderer instead of as browser. | 66 // Causes the process to run as renderer instead of as browser. |
72 const wchar_t kRendererProcess[] = L"renderer"; | 67 const wchar_t kRendererProcess[] = L"renderer"; |
73 | 68 |
74 // Path to the exe to run for the renderer subprocess | 69 // Path to the exe to run for the renderer subprocess |
75 const wchar_t kRendererPath[] = L"renderer-path"; | 70 const wchar_t kRendererPath[] = L"renderer-path"; |
76 | 71 |
77 // Causes the process to run as a plugin subprocess. | 72 // Causes the process to run as a plugin subprocess. |
78 const wchar_t kPluginProcess[] = L"plugin"; | 73 const wchar_t kPluginProcess[] = L"plugin"; |
79 | 74 |
80 // Causes the process to run as a worker subprocess. | 75 // Causes the process to run as a worker subprocess. |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 | 397 |
403 // On POSIX only: use FIFO for IPC channels so that "unrelated" process | 398 // On POSIX only: use FIFO for IPC channels so that "unrelated" process |
404 // can connect to a channel, provided it knows its name. For debugging purposes. | 399 // can connect to a channel, provided it knows its name. For debugging purposes. |
405 const wchar_t kIPCUseFIFO[] = L"ipc-use-fifo"; | 400 const wchar_t kIPCUseFIFO[] = L"ipc-use-fifo"; |
406 | 401 |
407 // If this flag is set open out of process developer tools window instead of | 402 // If this flag is set open out of process developer tools window instead of |
408 // Console Debugger when user clicks "Debug JavaScript". | 403 // Console Debugger when user clicks "Debug JavaScript". |
409 const wchar_t kEnableOutOfProcessDevTools[] = L"enable-oop-devtools"; | 404 const wchar_t kEnableOutOfProcessDevTools[] = L"enable-oop-devtools"; |
410 | 405 |
411 } // namespace switches | 406 } // namespace switches |
OLD | NEW |