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

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

Issue 10899021: Add CDM video decoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add media library initialization. Created 8 years, 2 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
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 CONTENT_EXPORT extern const char kDisableJava[]; 63 CONTENT_EXPORT extern const char kDisableJava[];
64 CONTENT_EXPORT extern const char kDisableJavaScript[]; 64 CONTENT_EXPORT extern const char kDisableJavaScript[];
65 extern const char kDisableJavaScriptI18NAPI[]; 65 extern const char kDisableJavaScriptI18NAPI[];
66 CONTENT_EXPORT extern const char kDisableLocalStorage[]; 66 CONTENT_EXPORT extern const char kDisableLocalStorage[];
67 CONTENT_EXPORT extern const char kDisableLogging[]; 67 CONTENT_EXPORT extern const char kDisableLogging[];
68 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; 68 CONTENT_EXPORT extern const char kDisableSmoothScrolling[];
69 CONTENT_EXPORT extern const char kDisablePlugins[]; 69 CONTENT_EXPORT extern const char kDisablePlugins[];
70 extern const char kDisableRemoteFonts[]; 70 extern const char kDisableRemoteFonts[];
71 extern const char kDisableRendererAccessibility[]; 71 extern const char kDisableRendererAccessibility[];
72 extern const char kDisableSSLFalseStart[]; 72 extern const char kDisableSSLFalseStart[];
73 extern const char kDisableSeccompSandbox[]; 73 CONTENT_EXPORT extern const char kDisableSeccompSandbox[];
74 extern const char kDisableSeccompFilterSandbox[]; 74 CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[];
75 extern const char kDisableSessionStorage[]; 75 extern const char kDisableSessionStorage[];
76 extern const char kDisableSharedWorkers[]; 76 extern const char kDisableSharedWorkers[];
77 extern const char kDisableSiteSpecificQuirks[]; 77 extern const char kDisableSiteSpecificQuirks[];
78 CONTENT_EXPORT extern const char kDisableSpeechInput[]; 78 CONTENT_EXPORT extern const char kDisableSpeechInput[];
79 CONTENT_EXPORT extern const char kEnableScriptedSpeech[]; 79 CONTENT_EXPORT extern const char kEnableScriptedSpeech[];
80 extern const char kSpeechRecognitionWebserviceKey[]; 80 extern const char kSpeechRecognitionWebserviceKey[];
81 #if defined(OS_ANDROID) 81 #if defined(OS_ANDROID)
82 CONTENT_EXPORT extern const char kEnableWebAudio[]; 82 CONTENT_EXPORT extern const char kEnableWebAudio[];
83 #else 83 #else
84 CONTENT_EXPORT extern const char kDisableWebAudio[]; 84 CONTENT_EXPORT extern const char kDisableWebAudio[];
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 235
236 #if defined(USE_AURA) 236 #if defined(USE_AURA)
237 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; 237 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[];
238 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; 238 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[];
239 CONTENT_EXPORT extern const char kTestCompositor[]; 239 CONTENT_EXPORT extern const char kTestCompositor[];
240 #endif 240 #endif
241 241
242 } // namespace switches 242 } // namespace switches
243 243
244 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 244 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698