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

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

Issue 182493003: enable subtitle support and the new fullscreen video (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't enable fullscreen subtitle for webview Created 6 years, 9 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 CONTENT_EXPORT extern const char kEnableDirectWrite[]; 138 CONTENT_EXPORT extern const char kEnableDirectWrite[];
139 CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; 139 CONTENT_EXPORT extern const char kEnableHighResolutionTime[];
140 #endif 140 #endif
141 CONTENT_EXPORT extern const char kEnableHTMLImports[]; 141 CONTENT_EXPORT extern const char kEnableHTMLImports[];
142 CONTENT_EXPORT extern const char kEnableInbandTextTracks[]; 142 CONTENT_EXPORT extern const char kEnableInbandTextTracks[];
143 CONTENT_EXPORT extern const char kEnableLogging[]; 143 CONTENT_EXPORT extern const char kEnableLogging[];
144 extern const char kEnableMemoryBenchmarking[]; 144 extern const char kEnableMemoryBenchmarking[];
145 extern const char kEnableMonitorProfile[]; 145 extern const char kEnableMonitorProfile[];
146 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[]; 146 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[];
147 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; 147 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[];
148 extern const char kEnableOverlayFullscreenVideoSubtitle[]; 148 extern const char kDisableOverlayFullscreenVideoSubtitle[];
boliu 2014/03/06 19:42:53 need CONTENT EXPORT here
qinmin 2014/03/06 20:26:33 Done.
149 CONTENT_EXPORT extern const char kEnableOverlayScrollbar[]; 149 CONTENT_EXPORT extern const char kEnableOverlayScrollbar[];
150 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; 150 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[];
151 CONTENT_EXPORT extern const char kEnablePinch[]; 151 CONTENT_EXPORT extern const char kEnablePinch[];
152 extern const char kEnablePreparsedJsCaching[]; 152 extern const char kEnablePreparsedJsCaching[];
153 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[]; 153 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[];
154 extern const char kEnablePruneGpuCommandBuffers[]; 154 extern const char kEnablePruneGpuCommandBuffers[];
155 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[]; 155 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[];
156 CONTENT_EXPORT extern const char kEnableRepaintAfterLayout[]; 156 CONTENT_EXPORT extern const char kEnableRepaintAfterLayout[];
157 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; 157 CONTENT_EXPORT extern const char kEnableSandboxLogging[];
158 extern const char kEnableSkiaBenchmarking[]; 158 extern const char kEnableSkiaBenchmarking[];
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 #if defined(OS_POSIX) 315 #if defined(OS_POSIX)
316 extern const char kChildCleanExit[]; 316 extern const char kChildCleanExit[];
317 #endif 317 #endif
318 318
319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
320 // alphabetical order, or in one of the ifdefs (also in order in each section). 320 // alphabetical order, or in one of the ifdefs (also in order in each section).
321 321
322 } // namespace switches 322 } // namespace switches
323 323
324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698