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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 435723002: [New Tab Page] Add Field Trial support to the Local NTP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/local_ntp/local_ntp.html » ('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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures) 863 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)
864 }, 864 },
865 { 865 {
866 "disable-ntp-other-sessions-menu", 866 "disable-ntp-other-sessions-menu",
867 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_NAME, 867 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_NAME,
868 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_DESCRIPTION, 868 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_DESCRIPTION,
869 kOsDesktop, 869 kOsDesktop,
870 SINGLE_VALUE_TYPE(switches::kDisableNTPOtherSessionsMenu) 870 SINGLE_VALUE_TYPE(switches::kDisableNTPOtherSessionsMenu)
871 }, 871 },
872 { 872 {
873 "enable-new-ntp-design",
Jered 2014/08/01 15:23:06 I once worked on a research project that had an ol
Mathieu 2014/08/01 16:14:06 Nice story and good point (reminds me of the team
874 IDS_FLAGS_ENABLE_NEW_NTP_DESIGN_NAME,
875 IDS_FLAGS_ENABLE_NEW_NTP_DESIGN_DESCRIPTION,
876 kOsDesktop,
877 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewNTPDesign,
878 switches::kDisableNewNTPDesign)
879 },
880 {
873 "enable-devtools-experiments", 881 "enable-devtools-experiments",
874 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_NAME, 882 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_NAME,
875 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_DESCRIPTION, 883 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_DESCRIPTION,
876 kOsDesktop, 884 kOsDesktop,
877 SINGLE_VALUE_TYPE(switches::kEnableDevToolsExperiments) 885 SINGLE_VALUE_TYPE(switches::kEnableDevToolsExperiments)
878 }, 886 },
879 { 887 {
880 "silent-debugger-extension-api", 888 "silent-debugger-extension-api",
881 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_NAME, 889 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_NAME,
882 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_DESCRIPTION, 890 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_DESCRIPTION,
(...skipping 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after
2432 } 2440 }
2433 2441
2434 const Experiment* GetExperiments(size_t* count) { 2442 const Experiment* GetExperiments(size_t* count) {
2435 *count = num_experiments; 2443 *count = num_experiments;
2436 return experiments; 2444 return experiments;
2437 } 2445 }
2438 2446
2439 } // namespace testing 2447 } // namespace testing
2440 2448
2441 } // namespace about_flags 2449 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/local_ntp/local_ntp.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698