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

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

Issue 10332049: remove ntp app install hint (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync it Created 8 years, 7 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 | « no previous file | chrome/browser/chrome_browser_main.cc » ('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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped) 551 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped)
552 }, 552 },
553 { 553 {
554 "enable-css-regions", 554 "enable-css-regions",
555 IDS_FLAGS_CSS_REGIONS_NAME, 555 IDS_FLAGS_CSS_REGIONS_NAME,
556 IDS_FLAGS_CSS_REGIONS_DESCRIPTION, 556 IDS_FLAGS_CSS_REGIONS_DESCRIPTION,
557 kOsAll, 557 kOsAll,
558 SINGLE_VALUE_TYPE(switches::kEnableCssRegions) 558 SINGLE_VALUE_TYPE(switches::kEnableCssRegions)
559 }, 559 },
560 { 560 {
561 "ntp-app-install-hint",
562 IDS_FLAGS_APP_INSTALL_HINT_NAME,
563 IDS_FLAGS_APP_INSTALL_HINT_DESCRIPTION,
564 kOsAll,
565 SINGLE_VALUE_TYPE(switches::kNtpAppInstallHint)
566 },
567 {
568 "enable-extension-activity-ui", 561 "enable-extension-activity-ui",
569 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME, 562 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME,
570 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION, 563 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION,
571 kOsAll, 564 kOsAll,
572 SINGLE_VALUE_TYPE(switches::kEnableExtensionActivityUI) 565 SINGLE_VALUE_TYPE(switches::kEnableExtensionActivityUI)
573 }, 566 },
574 { 567 {
575 "webui-task-manager", 568 "webui-task-manager",
576 IDS_FLAGS_WEBUI_TASK_MANAGER_NAME, 569 IDS_FLAGS_WEBUI_TASK_MANAGER_NAME,
577 IDS_FLAGS_WEBUI_TASK_MANAGER_DESCRIPTION, 570 IDS_FLAGS_WEBUI_TASK_MANAGER_DESCRIPTION,
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 } 1128 }
1136 1129
1137 const Experiment* GetExperiments(size_t* count) { 1130 const Experiment* GetExperiments(size_t* count) {
1138 *count = num_experiments; 1131 *count = num_experiments;
1139 return experiments; 1132 return experiments;
1140 } 1133 }
1141 1134
1142 } // namespace testing 1135 } // namespace testing
1143 1136
1144 } // namespace about_flags 1137 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698