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

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

Issue 2903293002: [Android] Omnibox Placeholder Experiment (Closed)
Patch Set: fix some naming issues Created 3 years, 6 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 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 914
915 // Forces a custom summary to be displayed below the update menu item. 915 // Forces a custom summary to be displayed below the update menu item.
916 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary"; 916 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary";
917 917
918 // Sets the market URL for Chrome for use in testing. 918 // Sets the market URL for Chrome for use in testing.
919 const char kMarketUrlForTesting[] = "market-url-for-testing"; 919 const char kMarketUrlForTesting[] = "market-url-for-testing";
920 920
921 // Switch to an existing tab for a suggestion opened from the New Tab Page. 921 // Switch to an existing tab for a suggestion opened from the New Tab Page.
922 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; 922 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab";
923 923
924 // Specifies a particular hint text to show on omnibox url bar.
925 const char kOmniboxPlaceholderExperimentSwitch[] =
926 "omnibox-placeholder-experiment";
927
924 // Specifies Android phone page loading progress bar animation. 928 // Specifies Android phone page loading progress bar animation.
925 const char kProgressBarAnimation[] = "progress-bar-animation"; 929 const char kProgressBarAnimation[] = "progress-bar-animation";
926 930
927 // Specifies a particular tab management experiment to enable. 931 // Specifies a particular tab management experiment to enable.
928 const char kTabManagementExperimentTypeDisabled[] = 932 const char kTabManagementExperimentTypeDisabled[] =
929 "tab-management-experiment-type-disabled"; 933 "tab-management-experiment-type-disabled";
930 const char kTabManagementExperimentTypeElderberry[] = 934 const char kTabManagementExperimentTypeElderberry[] =
931 "tab-management-experiment-type-elderberry"; 935 "tab-management-experiment-type-elderberry";
932 936
933 // Custom WebAPK server URL for the sake of testing. 937 // Custom WebAPK server URL for the sake of testing.
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
1190 1194
1191 // ----------------------------------------------------------------------------- 1195 // -----------------------------------------------------------------------------
1192 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1196 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1193 // 1197 //
1194 // You were going to just dump your switches here, weren't you? Instead, please 1198 // You were going to just dump your switches here, weren't you? Instead, please
1195 // put them in alphabetical order above, or in order inside the appropriate 1199 // put them in alphabetical order above, or in order inside the appropriate
1196 // ifdef at the bottom. The order should match the header. 1200 // ifdef at the bottom. The order should match the header.
1197 // ----------------------------------------------------------------------------- 1201 // -----------------------------------------------------------------------------
1198 1202
1199 } // namespace switches 1203 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698