| OLD | NEW | 
|---|
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 306 | 306 | 
| 307 // Runs plugins inside the renderer process | 307 // Runs plugins inside the renderer process | 
| 308 const char kInProcessPlugins[]              = "in-process-plugins"; | 308 const char kInProcessPlugins[]              = "in-process-plugins"; | 
| 309 | 309 | 
| 310 // Causes the browser to launch directly in incognito mode. | 310 // Causes the browser to launch directly in incognito mode. | 
| 311 const char kIncognito[]                     = "incognito"; | 311 const char kIncognito[]                     = "incognito"; | 
| 312 | 312 | 
| 313 // Runs the Native Client inside the renderer process. | 313 // Runs the Native Client inside the renderer process. | 
| 314 const char kInternalNaCl[]                  = "internal-nacl"; | 314 const char kInternalNaCl[]                  = "internal-nacl"; | 
| 315 | 315 | 
| 316 // Runs a trusted Pepper plugin inside the renderer process. |  | 
| 317 const char kInternalPepper[]                = "internal-pepper"; |  | 
| 318 |  | 
| 319 // Specifies the flags passed to JS engine | 316 // Specifies the flags passed to JS engine | 
| 320 const char kJavaScriptFlags[]               = "js-flags"; | 317 const char kJavaScriptFlags[]               = "js-flags"; | 
| 321 | 318 | 
| 322 // Load an extension from the specified directory. | 319 // Load an extension from the specified directory. | 
| 323 const char kLoadExtension[]                 = "load-extension"; | 320 const char kLoadExtension[]                 = "load-extension"; | 
| 324 | 321 | 
| 325 // Load an NPAPI plugin from the specified path. | 322 // Load an NPAPI plugin from the specified path. | 
| 326 const char kLoadPlugin[]                    = "load-plugin"; | 323 const char kLoadPlugin[]                    = "load-plugin"; | 
| 327 | 324 | 
| 328 // Will filter log messages to show only the messages that are prefixed | 325 // Will filter log messages to show only the messages that are prefixed | 
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 713 | 710 | 
| 714 // ----------------------------------------------------------------------------- | 711 // ----------------------------------------------------------------------------- | 
| 715 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 712 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 
| 716 // | 713 // | 
| 717 // You were going to just dump your switches here, weren't you? Instead, | 714 // You were going to just dump your switches here, weren't you? Instead, | 
| 718 // please put them in alphabetical order above, or in order inside the | 715 // please put them in alphabetical order above, or in order inside the | 
| 719 // appropriate ifdef at the bottom. The order should match the header. | 716 // appropriate ifdef at the bottom. The order should match the header. | 
| 720 // ----------------------------------------------------------------------------- | 717 // ----------------------------------------------------------------------------- | 
| 721 | 718 | 
| 722 }  // namespace switches | 719 }  // namespace switches | 
| OLD | NEW | 
|---|