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

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

Issue 11861008: Expose the capturePicture feature in RenderView for Android WebView legacy API support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; 218 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[];
219 219
220 extern const char kEnableVisualWordMovement[]; 220 extern const char kEnableVisualWordMovement[];
221 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; 221 CONTENT_EXPORT extern const char kUseMobileUserAgent[];
222 222
223 #if defined(OS_ANDROID) 223 #if defined(OS_ANDROID)
224 extern const char kMediaPlayerInRenderProcess[]; 224 extern const char kMediaPlayerInRenderProcess[];
225 extern const char kDisableMediaHistoryLogging[]; 225 extern const char kDisableMediaHistoryLogging[];
226 extern const char kNetworkCountryIso[]; 226 extern const char kNetworkCountryIso[];
227 extern const char kEnableWebViewSynchronousAPIs[]; 227 extern const char kEnableWebViewSynchronousAPIs[];
228 extern const char kEnableWebViewCapturePictureAPI[];
228 #endif 229 #endif
229 230
230 #if defined(OS_POSIX) 231 #if defined(OS_POSIX)
231 extern const char kChildCleanExit[]; 232 extern const char kChildCleanExit[];
232 #endif 233 #endif
233 234
234 #if defined(OS_MACOSX) || defined(OS_WIN) 235 #if defined(OS_MACOSX) || defined(OS_WIN)
235 extern const char kUseSystemSSL[]; 236 extern const char kUseSystemSSL[];
236 #endif 237 #endif
237 238
238 #if defined(OS_MACOSX) && !defined(OS_IOS) 239 #if defined(OS_MACOSX) && !defined(OS_IOS)
239 extern const char kDisableCarbonInterposing[]; 240 extern const char kDisableCarbonInterposing[];
240 #endif 241 #endif
241 242
242 #if defined(USE_AURA) 243 #if defined(USE_AURA)
243 CONTENT_EXPORT extern const char kTestCompositor[]; 244 CONTENT_EXPORT extern const char kTestCompositor[];
244 #endif 245 #endif
245 246
246 CONTENT_EXPORT extern const char kEnableOverscrollHistoryNavigation[]; 247 CONTENT_EXPORT extern const char kEnableOverscrollHistoryNavigation[];
247 248
248 } // namespace switches 249 } // namespace switches
249 250
250 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 251 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698