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

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

Issue 2163393003: Tab switcher theme colors no longer behind flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 #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 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 // Enables Contextual Search. 1032 // Enables Contextual Search.
1033 const char kEnableContextualSearch[] = "enable-contextual-search"; 1033 const char kEnableContextualSearch[] = "enable-contextual-search";
1034 1034
1035 // Enables chrome hosted mode for Android. 1035 // Enables chrome hosted mode for Android.
1036 const char kEnableHostedMode[] = "enable-hosted-mode"; 1036 const char kEnableHostedMode[] = "enable-hosted-mode";
1037 1037
1038 // Enables a hung renderer InfoBar allowing the user to close or wait on 1038 // Enables a hung renderer InfoBar allowing the user to close or wait on
1039 // unresponsive web content. 1039 // unresponsive web content.
1040 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; 1040 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar";
1041 1041
1042 // Enable theme colors in the tab switcher.
1043 const char kEnableTabSwitcherThemeColors[] = "enable-tab-switcher-theme-colors";
1044
1045 // Enable VR UI if supported. 1042 // Enable VR UI if supported.
1046 const char kEnableVrShell[] = "enable-vr-shell"; 1043 const char kEnableVrShell[] = "enable-vr-shell";
1047 1044
1048 // Enables "Add to Home screen" in the app menu to generate WebAPKs. 1045 // Enables "Add to Home screen" in the app menu to generate WebAPKs.
1049 const char kEnableWebApk[] = "enable-webapk"; 1046 const char kEnableWebApk[] = "enable-webapk";
1050 1047
1051 // Forces the update menu badge to show. 1048 // Forces the update menu badge to show.
1052 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge"; 1049 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge";
1053 1050
1054 // Forces the update menu item to show. 1051 // Forces the update menu item to show.
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 1308
1312 // ----------------------------------------------------------------------------- 1309 // -----------------------------------------------------------------------------
1313 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1310 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1314 // 1311 //
1315 // You were going to just dump your switches here, weren't you? Instead, please 1312 // You were going to just dump your switches here, weren't you? Instead, please
1316 // put them in alphabetical order above, or in order inside the appropriate 1313 // put them in alphabetical order above, or in order inside the appropriate
1317 // ifdef at the bottom. The order should match the header. 1314 // ifdef at the bottom. The order should match the header.
1318 // ----------------------------------------------------------------------------- 1315 // -----------------------------------------------------------------------------
1319 1316
1320 } // namespace switches 1317 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698