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

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

Issue 1434123002: Enable theme-color on Chrome tabbed mode for phones by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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/about_flags.cc ('k') | no next file » | 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 9
10 namespace switches { 10 namespace switches {
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 1149
1150 // Enables a hung renderer InfoBar allowing the user to close or wait on 1150 // Enables a hung renderer InfoBar allowing the user to close or wait on
1151 // unresponsive web content. 1151 // unresponsive web content.
1152 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; 1152 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar";
1153 1153
1154 // Enable Physical Web scanning. 1154 // Enable Physical Web scanning.
1155 const char kEnablePhysicalWeb[] = "enable-physical-web"; 1155 const char kEnablePhysicalWeb[] = "enable-physical-web";
1156 1156
1157 // Specifies Android phone page loading progress bar animation. 1157 // Specifies Android phone page loading progress bar animation.
1158 const char kProgressBarAnimation[] = "progress-bar-animation"; 1158 const char kProgressBarAnimation[] = "progress-bar-animation";
1159
1160 // Enabled theme-color in tabbed mode of Chrome for Android.
1161 const char kEnableThemeColorInTabbedMode[]
1162 = "enable-theme-color-in-tabbed-mode";
1163 #endif // defined(OS_ANDROID) 1159 #endif // defined(OS_ANDROID)
1164 1160
1165 #if defined(USE_ASH) 1161 #if defined(USE_ASH)
1166 const char kOpenAsh[] = "open-ash"; 1162 const char kOpenAsh[] = "open-ash";
1167 #endif 1163 #endif
1168 1164
1169 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 1165 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
1170 // These flags show the man page on Linux. They are equivalent to each 1166 // These flags show the man page on Linux. They are equivalent to each
1171 // other. 1167 // other.
1172 const char kHelp[] = "help"; 1168 const char kHelp[] = "help";
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1379 1375
1380 // ----------------------------------------------------------------------------- 1376 // -----------------------------------------------------------------------------
1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1382 // 1378 //
1383 // You were going to just dump your switches here, weren't you? Instead, please 1379 // You were going to just dump your switches here, weren't you? Instead, please
1384 // put them in alphabetical order above, or in order inside the appropriate 1380 // put them in alphabetical order above, or in order inside the appropriate
1385 // ifdef at the bottom. The order should match the header. 1381 // ifdef at the bottom. The order should match the header.
1386 // ----------------------------------------------------------------------------- 1382 // -----------------------------------------------------------------------------
1387 1383
1388 } // namespace switches 1384 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698