OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Defines all the command-line switches used by Chrome. |
| 6 |
| 7 #ifndef CHROME_NACL_NACL_SWITCHES_H_ |
| 8 #define CHROME_NACL_NACL_SWITCHES_H_ |
| 9 |
| 10 #include "build/build_config.h" |
| 11 |
| 12 #include "base/base_switches.h" |
| 13 #include "content/public/common/content_switches.h" |
| 14 |
| 15 namespace switches { |
| 16 |
| 17 // All switches in alphabetical order. The switches should be documented |
| 18 // alongside the definition of their values in the .cc file. |
| 19 extern const char kDisableBundledPpapiFlash[]; |
| 20 extern const char kEnableNaCl[]; |
| 21 extern const char kEnableNaClDebug[]; |
| 22 extern const char kEnablePnacl[]; |
| 23 extern const char kNaClBrokerProcess[]; |
| 24 extern const char kNaClDebugMask[]; |
| 25 extern const char kNaClGdb[]; |
| 26 extern const char kNaClGdbScript[]; |
| 27 extern const char kNaClLoaderCmdPrefix[]; |
| 28 extern const char kNaClLoaderProcess[]; |
| 29 extern const char kPnaclDir[]; |
| 30 extern const char kPpapiFlashInProcess[]; |
| 31 extern const char kPpapiFlashPath[]; |
| 32 extern const char kPpapiFlashVersion[]; |
| 33 extern const char kTestNaClSandbox[]; |
| 34 |
| 35 } // namespace switches |
| 36 |
| 37 #endif // CHROME_NACL_NACL_SWITCHES_H_ |
OLD | NEW |