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

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

Issue 10947046: Eliminate kAshNotifyDisabled and SystemNotification (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) 749 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu)
750 }, 750 },
751 { 751 {
752 "show-touch-hud", 752 "show-touch-hud",
753 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, 753 IDS_FLAGS_SHOW_TOUCH_HUD_NAME,
754 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, 754 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION,
755 kOsAll, 755 kOsAll,
756 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) 756 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud)
757 }, 757 },
758 { 758 {
759 "ash-notify-disabled",
760 IDS_FLAGS_DISABLE_ASH_NOTIFY_NAME,
761 IDS_FLAGS_DISABLE_ASH_NOTIFY_DESCRIPTION,
762 kOsAll,
763 SINGLE_VALUE_TYPE(ash::switches::kAshNotifyDisabled),
764 },
765 {
766 "enable-pinch", 759 "enable-pinch",
767 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, 760 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME,
768 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, 761 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION,
769 kOsAll, 762 kOsAll,
770 SINGLE_VALUE_TYPE(switches::kEnablePinch), 763 SINGLE_VALUE_TYPE(switches::kEnablePinch),
771 }, 764 },
772 { 765 {
773 "app-list-show-apps-only", 766 "app-list-show-apps-only",
774 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, 767 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME,
775 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, 768 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION,
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 } 1347 }
1355 1348
1356 const Experiment* GetExperiments(size_t* count) { 1349 const Experiment* GetExperiments(size_t* count) {
1357 *count = num_experiments; 1350 *count = num_experiments;
1358 return experiments; 1351 return experiments;
1359 } 1352 }
1360 1353
1361 } // namespace testing 1354 } // namespace testing
1362 1355
1363 } // namespace about_flags 1356 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698