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

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

Issue 2470583002: Add VrShell feature flag and wire it up to VrShell delegate. (Closed)
Patch Set: rebase Created 4 years, 1 month 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
« no previous file with comments | « chrome/browser/android/chrome_feature_list.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 #if defined(OS_ANDROID) 1024 #if defined(OS_ANDROID)
1025 // Android authentication account type for SPNEGO authentication 1025 // Android authentication account type for SPNEGO authentication
1026 const char kAuthAndroidNegotiateAccountType[] = "auth-spnego-account-type"; 1026 const char kAuthAndroidNegotiateAccountType[] = "auth-spnego-account-type";
1027 1027
1028 // Disable App Link. 1028 // Disable App Link.
1029 const char kDisableAppLink[] = "disable-app-link"; 1029 const char kDisableAppLink[] = "disable-app-link";
1030 1030
1031 // Disables Contextual Search. 1031 // Disables Contextual Search.
1032 const char kDisableContextualSearch[] = "disable-contextual-search"; 1032 const char kDisableContextualSearch[] = "disable-contextual-search";
1033 1033
1034 // Disable VR UI if supported.
1035 const char kDisableVrShell[] = "disable-vr-shell";
1036
1037 // Enable the accessibility tab switcher. 1034 // Enable the accessibility tab switcher.
1038 const char kEnableAccessibilityTabSwitcher[] = 1035 const char kEnableAccessibilityTabSwitcher[] =
1039 "enable-accessibility-tab-switcher"; 1036 "enable-accessibility-tab-switcher";
1040 1037
1041 // Enable App Link. 1038 // Enable App Link.
1042 const char kEnableAppLink[] = "enable-app-link"; 1039 const char kEnableAppLink[] = "enable-app-link";
1043 1040
1044 // Enables Contextual Search. 1041 // Enables Contextual Search.
1045 const char kEnableContextualSearch[] = "enable-contextual-search"; 1042 const char kEnableContextualSearch[] = "enable-contextual-search";
1046 1043
1047 // Enables Contextual Search UI integration with Contextual Cards data. 1044 // Enables Contextual Search UI integration with Contextual Cards data.
1048 const char kEnableContextualSearchContextualCardsBarIntegration[] = 1045 const char kEnableContextualSearchContextualCardsBarIntegration[] =
1049 "cs-contextual-cards-bar-integration"; 1046 "cs-contextual-cards-bar-integration";
1050 1047
1051 // Enables chrome hosted mode for Android. 1048 // Enables chrome hosted mode for Android.
1052 const char kEnableHostedMode[] = "enable-hosted-mode"; 1049 const char kEnableHostedMode[] = "enable-hosted-mode";
1053 1050
1054 // Enables a hung renderer InfoBar allowing the user to close or wait on 1051 // Enables a hung renderer InfoBar allowing the user to close or wait on
1055 // unresponsive web content. 1052 // unresponsive web content.
1056 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; 1053 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar";
1057 1054
1058 // Enable VR UI if supported.
1059 const char kEnableVrShell[] = "enable-vr-shell";
1060
1061 // Enables "Add to Home screen" in the app menu to generate WebAPKs. 1055 // Enables "Add to Home screen" in the app menu to generate WebAPKs.
1062 const char kEnableWebApk[] = "enable-webapk"; 1056 const char kEnableWebApk[] = "enable-webapk";
1063 1057
1064 // Forces the update menu badge to show. 1058 // Forces the update menu badge to show.
1065 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge"; 1059 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge";
1066 1060
1067 // Forces the update menu item to show. 1061 // Forces the update menu item to show.
1068 const char kForceShowUpdateMenuItem[] = "force-show-update-menu-item"; 1062 const char kForceShowUpdateMenuItem[] = "force-show-update-menu-item";
1069 1063
1070 // Forces a custom summary to be displayed below the update menu item. 1064 // Forces a custom summary to be displayed below the update menu item.
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 1321
1328 // ----------------------------------------------------------------------------- 1322 // -----------------------------------------------------------------------------
1329 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1323 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1330 // 1324 //
1331 // You were going to just dump your switches here, weren't you? Instead, please 1325 // You were going to just dump your switches here, weren't you? Instead, please
1332 // put them in alphabetical order above, or in order inside the appropriate 1326 // put them in alphabetical order above, or in order inside the appropriate
1333 // ifdef at the bottom. The order should match the header. 1327 // ifdef at the bottom. The order should match the header.
1334 // ----------------------------------------------------------------------------- 1328 // -----------------------------------------------------------------------------
1335 1329
1336 } // namespace switches 1330 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_feature_list.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698