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

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

Issue 10941015: [Android] Upstream the WebView find-in-page API implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fixes + command line switch for synchronous APIs Created 8 years, 3 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 204
205 #if defined(OS_ANDROID) 205 #if defined(OS_ANDROID)
206 extern const char kMediaPlayerInRenderProcess[]; 206 extern const char kMediaPlayerInRenderProcess[];
207 extern const char kDisableMediaHistoryLogging[]; 207 extern const char kDisableMediaHistoryLogging[];
208 extern const char kNetworkCountryIso[]; 208 extern const char kNetworkCountryIso[];
209 extern const char kUseMobileUserAgent[]; 209 extern const char kUseMobileUserAgent[];
210 extern const char kGraphicsMode[]; 210 extern const char kGraphicsMode[];
211 // Not actual flags, just values: for example, --graphics-mode=compositor 211 // Not actual flags, just values: for example, --graphics-mode=compositor
212 extern const char kGraphicsModeValueBasic[]; 212 extern const char kGraphicsModeValueBasic[];
213 extern const char kGraphicsModeValueCompositor[]; 213 extern const char kGraphicsModeValueCompositor[];
214 extern const char kEnableWebViewSynchronousAPIs[];
214 #endif 215 #endif
215 216
216 #if defined(OS_POSIX) 217 #if defined(OS_POSIX)
217 extern const char kChildCleanExit[]; 218 extern const char kChildCleanExit[];
218 #endif 219 #endif
219 220
220 #if defined(OS_POSIX) && !defined(OS_MACOSX) 221 #if defined(OS_POSIX) && !defined(OS_MACOSX)
221 extern const char kScrollPixels[]; 222 extern const char kScrollPixels[];
222 #endif 223 #endif
223 224
224 #if defined(OS_MACOSX) || defined(OS_WIN) 225 #if defined(OS_MACOSX) || defined(OS_WIN)
225 extern const char kUseSystemSSL[]; 226 extern const char kUseSystemSSL[];
226 #endif 227 #endif
227 228
228 extern const char kEnablePerTilePainting[]; 229 extern const char kEnablePerTilePainting[];
229 230
230 #if defined(USE_AURA) 231 #if defined(USE_AURA)
231 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; 232 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[];
232 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; 233 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[];
233 CONTENT_EXPORT extern const char kTestCompositor[]; 234 CONTENT_EXPORT extern const char kTestCompositor[];
234 #endif 235 #endif
235 236
236 } // namespace switches 237 } // namespace switches
237 238
238 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 239 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698