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

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

Issue 11187058: Add flag to enable web content to invoke web intents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 extern const char kUninstall[]; 342 extern const char kUninstall[];
343 extern const char kUseSpdy[]; 343 extern const char kUseSpdy[];
344 extern const char kUseGpuInTests[]; 344 extern const char kUseGpuInTests[];
345 extern const char kMaxSpdySessionsPerDomain[]; 345 extern const char kMaxSpdySessionsPerDomain[];
346 extern const char kMaxSpdyConcurrentStreams[]; 346 extern const char kMaxSpdyConcurrentStreams[];
347 extern const char kUserDataDir[]; 347 extern const char kUserDataDir[];
348 extern const char kVariationsServerURL[]; 348 extern const char kVariationsServerURL[];
349 extern const char kVersion[]; 349 extern const char kVersion[];
350 extern const char kVisitURLs[]; 350 extern const char kVisitURLs[];
351 extern const char kWebIntentsNativeServicesEnabled[]; 351 extern const char kWebIntentsNativeServicesEnabled[];
352 extern const char kWebIntentsEnabledForWebContent[];
352 extern const char kWhitelistedExtensionID[]; 353 extern const char kWhitelistedExtensionID[];
353 extern const char kWindowPosition[]; 354 extern const char kWindowPosition[];
354 extern const char kWindowSize[]; 355 extern const char kWindowSize[];
355 extern const char kWinHttpProxyResolver[]; 356 extern const char kWinHttpProxyResolver[];
356 357
357 #if defined(ENABLE_PLUGIN_INSTALLATION) 358 #if defined(ENABLE_PLUGIN_INSTALLATION)
358 extern const char kPluginsMetadataServerURL[]; 359 extern const char kPluginsMetadataServerURL[];
359 #endif 360 #endif
360 361
361 #if defined(OS_ANDROID) 362 #if defined(OS_ANDROID)
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 457
457 namespace chrome { 458 namespace chrome {
458 459
459 // Returns true if the new frameless constrained window style is enabled. 460 // Returns true if the new frameless constrained window style is enabled.
460 // TODO(sail): Remove this once the feature is fully baked. 461 // TODO(sail): Remove this once the feature is fully baked.
461 bool IsFramelessConstrainedDialogEnabled(); 462 bool IsFramelessConstrainedDialogEnabled();
462 463
463 } // namespace chrome 464 } // namespace chrome
464 465
465 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 466 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698