Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Side by Side Diff: content/public/common/content_switches.h

Issue 22198004: Always enable FCM on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge up to r219022 Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/common/content_switches.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 CONTENT_EXPORT extern const char kRendererAssertTest[]; 207 CONTENT_EXPORT extern const char kRendererAssertTest[];
208 extern const char kRendererCmdPrefix[]; 208 extern const char kRendererCmdPrefix[];
209 CONTENT_EXPORT extern const char kRendererProcess[]; 209 CONTENT_EXPORT extern const char kRendererProcess[];
210 extern const char kRendererProcessLimit[]; 210 extern const char kRendererProcessLimit[];
211 extern const char kRendererStartupDialog[]; 211 extern const char kRendererStartupDialog[];
212 CONTENT_EXPORT extern const char kScrollEndEffect[]; 212 CONTENT_EXPORT extern const char kScrollEndEffect[];
213 extern const char kShowPaintRects[]; 213 extern const char kShowPaintRects[];
214 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; 214 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[];
215 CONTENT_EXPORT extern const char kSingleProcess[]; 215 CONTENT_EXPORT extern const char kSingleProcess[];
216 CONTENT_EXPORT extern const char kSitePerProcess[]; 216 CONTENT_EXPORT extern const char kSitePerProcess[];
217 CONTENT_EXPORT extern const char kSkipGpuDataLoading[];
218 extern const char kSpeechRecognitionWebserviceKey[]; 217 extern const char kSpeechRecognitionWebserviceKey[];
219 CONTENT_EXPORT extern const char kStatsCollectionController[]; 218 CONTENT_EXPORT extern const char kStatsCollectionController[];
220 extern const char kTabCaptureDownscaleQuality[]; 219 extern const char kTabCaptureDownscaleQuality[];
221 extern const char kTabCaptureUpscaleQuality[]; 220 extern const char kTabCaptureUpscaleQuality[];
222 extern const char kTapDownDeferralTimeMs[]; 221 extern const char kTapDownDeferralTimeMs[];
223 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; 222 CONTENT_EXPORT extern const char kTestingFixedHttpPort[];
224 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; 223 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[];
225 CONTENT_EXPORT extern const char kTestSandbox[]; 224 CONTENT_EXPORT extern const char kTestSandbox[];
226 CONTENT_EXPORT extern const char kNoTouchToRendererWhileScrolling[]; 225 CONTENT_EXPORT extern const char kNoTouchToRendererWhileScrolling[];
227 extern const char kTraceStartup[]; 226 extern const char kTraceStartup[];
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 #endif 273 #endif
275 274
276 #if defined(OS_POSIX) 275 #if defined(OS_POSIX)
277 extern const char kChildCleanExit[]; 276 extern const char kChildCleanExit[];
278 #endif 277 #endif
279 278
280 #if defined(USE_AURA) 279 #if defined(USE_AURA)
281 CONTENT_EXPORT extern const char kTestCompositor[]; 280 CONTENT_EXPORT extern const char kTestCompositor[];
282 #endif 281 #endif
283 282
283 #if defined(OS_LINUX) || defined(OS_MACOSX)
284 CONTENT_EXPORT extern const char kSkipGpuDataLoading[];
285 #endif
286
284 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 287 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
285 // alphabetical order, or in one of the ifdefs (also in order in each section). 288 // alphabetical order, or in one of the ifdefs (also in order in each section).
286 289
287 CONTENT_EXPORT extern const char kAllowFiltersOverIPC[]; 290 CONTENT_EXPORT extern const char kAllowFiltersOverIPC[];
288 291
289 } // namespace switches 292 } // namespace switches
290 293
291 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 294 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/common/content_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698