| 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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 | 985 |
| 986 // Chrome supports a playback and record mode. Record mode saves *everything* | 986 // Chrome supports a playback and record mode. Record mode saves *everything* |
| 987 // to the cache. Playback mode reads data exclusively from the cache. This | 987 // to the cache. Playback mode reads data exclusively from the cache. This |
| 988 // allows us to record a session into the cache and then replay it at will. | 988 // allows us to record a session into the cache and then replay it at will. |
| 989 // See also kPlaybackMode. | 989 // See also kPlaybackMode. |
| 990 const char kRecordMode[] = "record-mode"; | 990 const char kRecordMode[] = "record-mode"; |
| 991 | 991 |
| 992 // Register pepper plugins that should be loaded into the renderer. | 992 // Register pepper plugins that should be loaded into the renderer. |
| 993 const char kRegisterPepperPlugins[] = "register-pepper-plugins"; | 993 const char kRegisterPepperPlugins[] = "register-pepper-plugins"; |
| 994 | 994 |
| 995 // Reload pages that have been killed when they are next focused by the user. |
| 996 const char kReloadKilledTabs[] = "reload-killed-tabs"; |
| 997 |
| 995 // Enable remote debug over HTTP on the specified port. | 998 // Enable remote debug over HTTP on the specified port. |
| 996 const char kRemoteDebuggingPort[] = "remote-debugging-port"; | 999 const char kRemoteDebuggingPort[] = "remote-debugging-port"; |
| 997 | 1000 |
| 998 // Enable remote debug / automation shell on the specified port. | 1001 // Enable remote debug / automation shell on the specified port. |
| 999 const char kRemoteShellPort[] = "remote-shell-port"; | 1002 const char kRemoteShellPort[] = "remote-shell-port"; |
| 1000 | 1003 |
| 1001 // Causes the renderer process to throw an assertion on launch. | 1004 // Causes the renderer process to throw an assertion on launch. |
| 1002 const char kRendererAssertTest[] = "renderer-assert-test"; | 1005 const char kRendererAssertTest[] = "renderer-assert-test"; |
| 1003 | 1006 |
| 1004 #if !defined(OFFICIAL_BUILD) | 1007 #if !defined(OFFICIAL_BUILD) |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 | 1380 |
| 1378 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
| 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1380 // | 1383 // |
| 1381 // You were going to just dump your switches here, weren't you? Instead, | 1384 // You were going to just dump your switches here, weren't you? Instead, |
| 1382 // please put them in alphabetical order above, or in order inside the | 1385 // please put them in alphabetical order above, or in order inside the |
| 1383 // appropriate ifdef at the bottom. The order should match the header. | 1386 // appropriate ifdef at the bottom. The order should match the header. |
| 1384 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
| 1385 | 1388 |
| 1386 } // namespace switches | 1389 } // namespace switches |
| OLD | NEW |