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

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

Issue 10834081: Enable wallpaper boot animation for boot into sign in too. Add flag to disable it. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 8 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
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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 kOsCrOS, 817 kOsCrOS,
818 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), 818 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera),
819 }, 819 },
820 { 820 {
821 "disable-new-oobe", 821 "disable-new-oobe",
822 IDS_FLAGS_DISABLE_NEW_OOBE, 822 IDS_FLAGS_DISABLE_NEW_OOBE,
823 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, 823 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION,
824 kOsCrOS, 824 kOsCrOS,
825 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), 825 SINGLE_VALUE_TYPE(switches::kDisableNewOobe),
826 }, 826 },
827 {
828 "disable-boot-animation",
829 IDS_FLAGS_DISABLE_BOOT_ANIMATION,
830 IDS_FLAGS_DISABLE_BOOT_ANIMATION_DESCRIPTION,
831 kOsCrOS,
832 SINGLE_VALUE_TYPE(switches::kDisableBootAnimation),
833 },
827 #endif 834 #endif
828 { 835 {
829 "enable-views-textfield", 836 "enable-views-textfield",
830 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, 837 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME,
831 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, 838 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION,
832 kOsWin, 839 kOsWin,
833 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), 840 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield),
834 }, 841 },
835 { 842 {
836 "old-checkbox-style", 843 "old-checkbox-style",
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 } 1313 }
1307 1314
1308 const Experiment* GetExperiments(size_t* count) { 1315 const Experiment* GetExperiments(size_t* count) {
1309 *count = num_experiments; 1316 *count = num_experiments;
1310 return experiments; 1317 return experiments;
1311 } 1318 }
1312 1319
1313 } // namespace testing 1320 } // namespace testing
1314 1321
1315 } // namespace about_flags 1322 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/background/ash_user_wallpaper_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698