Chromium Code Reviews| 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. | |
|
dmichael (off chromium)
2013/05/30 05:00:44
Please update this comment
yael.aharon1
2013/05/30 13:50:32
Done.
| |
| 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" | |
|
dmichael (off chromium)
2013/05/30 05:00:44
Is this include necessary?
yael.aharon1
2013/05/30 13:50:32
Removed
| |
| 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 kEnableNaCl[]; | |
| 20 extern const char kEnableNaClDebug[]; | |
| 21 extern const char kEnablePnacl[]; | |
| 22 extern const char kNaClBrokerProcess[]; | |
| 23 extern const char kNaClDebugMask[]; | |
| 24 extern const char kNaClGdb[]; | |
| 25 extern const char kNaClGdbScript[]; | |
| 26 extern const char kNaClLoaderCmdPrefix[]; | |
| 27 extern const char kNaClLoaderProcess[]; | |
| 28 extern const char kPnaclDir[]; | |
| 29 extern const char kTestNaClSandbox[]; | |
| 30 | |
| 31 } // namespace switches | |
| 32 | |
| 33 #endif // CHROME_NACL_NACL_SWITCHES_H_ | |
| OLD | NEW |