| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Defines all the "content_shell" command-line switches. | 5 // Defines all the "content_shell" command-line switches. |
| 6 | 6 |
| 7 #ifndef CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ | 7 #ifndef CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ |
| 8 #define CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ | 8 #define CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 namespace switches { | 13 namespace switches { |
| 14 | 14 |
| 15 extern const char kAllowExternalPages[]; | |
| 16 extern const char kCheckLayoutTestSysDeps[]; | |
| 17 extern const char kContentBrowserTest[]; | 15 extern const char kContentBrowserTest[]; |
| 18 extern const char kContentShellDataPath[]; | 16 extern const char kContentShellDataPath[]; |
| 19 extern const char kCrashDumpsDir[]; | 17 extern const char kCrashDumpsDir[]; |
| 20 extern const char kCrashOnFailure[]; | |
| 21 extern const char kEnableAccelerated2DCanvas[]; | |
| 22 extern const char kEnableFontAntialiasing[]; | |
| 23 extern const char kAlwaysUseComplexText[]; | |
| 24 extern const char kEnableLeakDetection[]; | |
| 25 extern const char kEncodeBinary[]; | |
| 26 extern const char kExposeInternalsForTesting[]; | |
| 27 extern const char kIsolateSitesForTesting[]; | 18 extern const char kIsolateSitesForTesting[]; |
| 28 extern const char kRegisterFontFiles[]; | 19 extern const char kRegisterFontFiles[]; |
| 29 extern const char kRunLayoutTest[]; | |
| 30 extern const char kStableReleaseMode[]; | |
| 31 extern const char kContentShellHostWindowSize[]; | 20 extern const char kContentShellHostWindowSize[]; |
| 32 | 21 |
| 33 // Returns list of extra font files to be made accessible to the renderer. | 22 // Returns list of extra font files to be made accessible to the renderer. |
| 34 std::vector<std::string> GetSideloadFontFiles(); | 23 std::vector<std::string> GetSideloadFontFiles(); |
| 35 | 24 |
| 25 // Tells if content shell is running layout tests. |
| 26 // TODO(lukasza): The function below somewhat violates the layering (by |
| 27 // enabling shell -> layout_tests dependency) but at least narrows the extent of |
| 28 // the dependency to a single switch... |
| 29 bool IsRunLayoutTestSwitchPresent(); |
| 30 |
| 36 } // namespace switches | 31 } // namespace switches |
| 37 | 32 |
| 38 #endif // CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ | 33 #endif // CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ |
| OLD | NEW |