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

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

Issue 1512113002: Read feature param for Physical Web experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Used new feature API Created 5 years 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 9
10 namespace switches { 10 namespace switches {
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 const char kEnableDomDistillerButtonAnimation[] = 1126 const char kEnableDomDistillerButtonAnimation[] =
1127 "enable-dom-distiller-button-animation"; 1127 "enable-dom-distiller-button-animation";
1128 1128
1129 // Enables chrome hosted mode for Android. 1129 // Enables chrome hosted mode for Android.
1130 const char kEnableHostedMode[] = "enable-hosted-mode"; 1130 const char kEnableHostedMode[] = "enable-hosted-mode";
1131 1131
1132 // Enables a hung renderer InfoBar allowing the user to close or wait on 1132 // Enables a hung renderer InfoBar allowing the user to close or wait on
1133 // unresponsive web content. 1133 // unresponsive web content.
1134 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; 1134 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar";
1135 1135
1136 // Enable Physical Web scanning.
1137 const char kEnablePhysicalWeb[] = "enable-physical-web";
1138
1139 // Specifies Android phone page loading progress bar animation. 1136 // Specifies Android phone page loading progress bar animation.
1140 const char kProgressBarAnimation[] = "progress-bar-animation"; 1137 const char kProgressBarAnimation[] = "progress-bar-animation";
1141 1138
1142 // Enabled tab switcher in document mode. 1139 // Enabled tab switcher in document mode.
1143 const char kEnableTabSwitcherInDocumentMode[] = 1140 const char kEnableTabSwitcherInDocumentMode[] =
1144 "enable-tab-switcher-in-document-mode"; 1141 "enable-tab-switcher-in-document-mode";
1145 1142
1146 // Switch to an existing tab for a suggestion opened from the New Tab Page. 1143 // Switch to an existing tab for a suggestion opened from the New Tab Page.
1147 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; 1144 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab";
1148 #endif // defined(OS_ANDROID) 1145 #endif // defined(OS_ANDROID)
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 1373
1377 // ----------------------------------------------------------------------------- 1374 // -----------------------------------------------------------------------------
1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1379 // 1376 //
1380 // You were going to just dump your switches here, weren't you? Instead, please 1377 // You were going to just dump your switches here, weren't you? Instead, please
1381 // put them in alphabetical order above, or in order inside the appropriate 1378 // put them in alphabetical order above, or in order inside the appropriate
1382 // ifdef at the bottom. The order should match the header. 1379 // ifdef at the bottom. The order should match the header.
1383 // ----------------------------------------------------------------------------- 1380 // -----------------------------------------------------------------------------
1384 1381
1385 } // namespace switches 1382 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698