| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 // Whether to display the "Debug" link for app launch behavior. | 52 // Whether to display the "Debug" link for app launch behavior. |
| 53 const char kAppsDebug[] = "apps-debug"; | 53 const char kAppsDebug[] = "apps-debug"; |
| 54 | 54 |
| 55 // Authentication white list for servers | 55 // Authentication white list for servers |
| 56 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 56 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
| 57 | 57 |
| 58 // The value of this switch tells the app to listen for and broadcast | 58 // The value of this switch tells the app to listen for and broadcast |
| 59 // automation-related messages on IPC channel with the given ID. | 59 // automation-related messages on IPC channel with the given ID. |
| 60 const char kAutomationClientChannelID[] = "automation-channel"; | 60 const char kAutomationClientChannelID[] = "automation-channel"; |
| 61 | 61 |
| 62 // Enables the bookmark menu. | |
| 63 const char kBookmarkMenu[] = "bookmark-menu"; | |
| 64 | |
| 65 // Causes the browser process to throw an assertion on startup. | 62 // Causes the browser process to throw an assertion on startup. |
| 66 const char kBrowserAssertTest[] = "assert-test"; | 63 const char kBrowserAssertTest[] = "assert-test"; |
| 67 | 64 |
| 68 // Causes the browser process to crash on startup. | 65 // Causes the browser process to crash on startup. |
| 69 const char kBrowserCrashTest[] = "crash-test"; | 66 const char kBrowserCrashTest[] = "crash-test"; |
| 70 | 67 |
| 71 // Path to the exe to run for the renderer and plugin subprocesses. | 68 // Path to the exe to run for the renderer and plugin subprocesses. |
| 72 const char kBrowserSubprocessPath[] = "browser-subprocess-path"; | 69 const char kBrowserSubprocessPath[] = "browser-subprocess-path"; |
| 73 | 70 |
| 74 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run | 71 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run |
| (...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1054 | 1051 |
| 1055 // ----------------------------------------------------------------------------- | 1052 // ----------------------------------------------------------------------------- |
| 1056 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1053 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1057 // | 1054 // |
| 1058 // You were going to just dump your switches here, weren't you? Instead, | 1055 // You were going to just dump your switches here, weren't you? Instead, |
| 1059 // please put them in alphabetical order above, or in order inside the | 1056 // please put them in alphabetical order above, or in order inside the |
| 1060 // appropriate ifdef at the bottom. The order should match the header. | 1057 // appropriate ifdef at the bottom. The order should match the header. |
| 1061 // ----------------------------------------------------------------------------- | 1058 // ----------------------------------------------------------------------------- |
| 1062 | 1059 |
| 1063 } // namespace switches | 1060 } // namespace switches |
| OLD | NEW |