| 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" command-line switches. | 5 // Defines all the "content" command-line switches. |
| 6 | 6 |
| 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 extern const char kProcessPerSite[]; | 139 extern const char kProcessPerSite[]; |
| 140 CONTENT_EXPORT extern const char kProcessPerTab[]; | 140 CONTENT_EXPORT extern const char kProcessPerTab[]; |
| 141 CONTENT_EXPORT extern const char kProcessType[]; | 141 CONTENT_EXPORT extern const char kProcessType[]; |
| 142 CONTENT_EXPORT extern const char kRecordMode[]; | 142 CONTENT_EXPORT extern const char kRecordMode[]; |
| 143 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 143 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
| 144 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 144 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
| 145 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 145 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
| 146 extern const char kRendererCmdPrefix[]; | 146 extern const char kRendererCmdPrefix[]; |
| 147 CONTENT_EXPORT extern const char kRendererCrashTest[]; | 147 CONTENT_EXPORT extern const char kRendererCrashTest[]; |
| 148 CONTENT_EXPORT extern const char kRendererProcess[]; | 148 CONTENT_EXPORT extern const char kRendererProcess[]; |
| 149 extern const char kRendererProcessLimit[]; |
| 149 extern const char kRendererStartupDialog[]; | 150 extern const char kRendererStartupDialog[]; |
| 150 // TODO(jam): this doesn't belong in content. | 151 // TODO(jam): this doesn't belong in content. |
| 151 CONTENT_EXPORT extern const char kServiceProcess[]; | 152 CONTENT_EXPORT extern const char kServiceProcess[]; |
| 152 extern const char kShowPaintRects[]; | 153 extern const char kShowPaintRects[]; |
| 153 CONTENT_EXPORT extern const char kSingleProcess[]; | 154 CONTENT_EXPORT extern const char kSingleProcess[]; |
| 154 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 155 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
| 155 CONTENT_EXPORT extern const char kTestSandbox[]; | 156 CONTENT_EXPORT extern const char kTestSandbox[]; |
| 156 extern const char kTouchOptimizedUI[]; | 157 extern const char kTouchOptimizedUI[]; |
| 157 extern const char kTraceStartup[]; | 158 extern const char kTraceStartup[]; |
| 158 extern const char kTraceStartupFile[]; | 159 extern const char kTraceStartupFile[]; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 183 | 184 |
| 184 #if !defined(OFFICIAL_BUILD) | 185 #if !defined(OFFICIAL_BUILD) |
| 185 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; | 186 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; |
| 186 #endif | 187 #endif |
| 187 | 188 |
| 188 extern const char kEnablePerTilePainting[]; | 189 extern const char kEnablePerTilePainting[]; |
| 189 | 190 |
| 190 } // namespace switches | 191 } // namespace switches |
| 191 | 192 |
| 192 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 193 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |