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

Side by Side Diff: chrome/common/chrome_switches.h

Issue 2138973002: Initial CL for talking to the WebAPK server to generate WebAPK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'webapk_builder_impl0' into webapk_builder_impl2 Created 4 years, 5 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
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 the shared command-line switches used by code in the Chrome 5 // Defines the shared command-line switches used by code in the Chrome
6 // directory that don't have anywhere more specific to go. 6 // directory that don't have anywhere more specific to go.
7 7
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ 9 #define CHROME_COMMON_CHROME_SWITCHES_H_
10 10
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 extern const char kUnlimitedStorage[]; 289 extern const char kUnlimitedStorage[];
290 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; 290 extern const char kUnsafelyTreatInsecureOriginAsSecure[];
291 extern const char kUnsafePacUrl[]; 291 extern const char kUnsafePacUrl[];
292 extern const char kUseSimpleCacheBackend[]; 292 extern const char kUseSimpleCacheBackend[];
293 extern const char kUserAgent[]; 293 extern const char kUserAgent[];
294 extern const char kUserDataDir[]; 294 extern const char kUserDataDir[];
295 extern const char kV8PacMojoInProcess[]; 295 extern const char kV8PacMojoInProcess[];
296 extern const char kV8PacMojoOutOfProcess[]; 296 extern const char kV8PacMojoOutOfProcess[];
297 extern const char kValidateCrx[]; 297 extern const char kValidateCrx[];
298 extern const char kVersion[]; 298 extern const char kVersion[];
299 extern const char kWebApkServerUrl[];
Xi Han 2016/07/14 14:53:17 Please place it within the block with "#if defined
pkotwicz 2016/07/20 05:13:41 Done! Thank you for catching this
299 extern const char kWindowPosition[]; 300 extern const char kWindowPosition[];
300 extern const char kWindowSize[]; 301 extern const char kWindowSize[];
301 extern const char kWindowWorkspace[]; 302 extern const char kWindowWorkspace[];
302 extern const char kWinHttpProxyResolver[]; 303 extern const char kWinHttpProxyResolver[];
303 extern const char kWinJumplistAction[]; 304 extern const char kWinJumplistAction[];
304 305
305 #if defined(OS_ANDROID) 306 #if defined(OS_ANDROID)
306 extern const char kAuthAndroidNegotiateAccountType[]; 307 extern const char kAuthAndroidNegotiateAccountType[];
307 extern const char kDisableContextualSearch[]; 308 extern const char kDisableContextualSearch[];
308 extern const char kEnableAccessibilityTabSwitcher[]; 309 extern const char kEnableAccessibilityTabSwitcher[];
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 #if defined(OS_CHROMEOS) 408 #if defined(OS_CHROMEOS)
408 bool PowerOverlayEnabled(); 409 bool PowerOverlayEnabled();
409 #endif 410 #endif
410 411
411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 412 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
412 // alphabetical order, or in one of the ifdefs (also in order in each section). 413 // alphabetical order, or in one of the ifdefs (also in order in each section).
413 414
414 } // namespace switches 415 } // namespace switches
415 416
416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 417 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698