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

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: Fix nit Created 8 years, 2 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) 759 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu)
760 }, 760 },
761 { 761 {
762 "show-touch-hud", 762 "show-touch-hud",
763 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, 763 IDS_FLAGS_SHOW_TOUCH_HUD_NAME,
764 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, 764 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION,
765 kOsAll, 765 kOsAll,
766 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) 766 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud)
767 }, 767 },
768 { 768 {
769 "ash-notify-disabled",
770 IDS_FLAGS_DISABLE_ASH_NOTIFY_NAME,
771 IDS_FLAGS_DISABLE_ASH_NOTIFY_DESCRIPTION,
772 kOsAll,
773 SINGLE_VALUE_TYPE(ash::switches::kAshNotifyDisabled),
774 },
775 {
776 "enable-pinch", 769 "enable-pinch",
777 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, 770 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME,
778 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, 771 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION,
779 kOsAll, 772 kOsAll,
780 SINGLE_VALUE_TYPE(switches::kEnablePinch), 773 SINGLE_VALUE_TYPE(switches::kEnablePinch),
781 }, 774 },
782 { 775 {
783 "app-list-show-apps-only", 776 "app-list-show-apps-only",
784 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, 777 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME,
785 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, 778 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION,
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
1371 } 1364 }
1372 1365
1373 const Experiment* GetExperiments(size_t* count) { 1366 const Experiment* GetExperiments(size_t* count) {
1374 *count = num_experiments; 1367 *count = num_experiments;
1375 return experiments; 1368 return experiments;
1376 } 1369 }
1377 1370
1378 } // namespace testing 1371 } // namespace testing
1379 1372
1380 } // namespace about_flags 1373 } // namespace about_flags
OLDNEW
« no previous file with comments | « ash/system/power/tray_power.cc ('k') | chrome/browser/chromeos/extensions/file_browser_notifications.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698