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

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

Issue 2700523004: Remove docked windows entirely in M59. (Closed)
Patch Set: oshima + mfomitchev comments Created 3 years, 9 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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 1052 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
1053 }, 1053 },
1054 { 1054 {
1055 "ash-disable-maximize-mode-window-backdrop", 1055 "ash-disable-maximize-mode-window-backdrop",
1056 IDS_FLAGS_ASH_MAXIMIZE_MODE_WINDOW_BACKDROP_NAME, 1056 IDS_FLAGS_ASH_MAXIMIZE_MODE_WINDOW_BACKDROP_NAME,
1057 IDS_FLAGS_ASH_MAXIMIZE_MODE_WINDOW_BACKDROP_DESCRIPTION, kOsCrOS, 1057 IDS_FLAGS_ASH_MAXIMIZE_MODE_WINDOW_BACKDROP_DESCRIPTION, kOsCrOS,
1058 SINGLE_DISABLE_VALUE_TYPE( 1058 SINGLE_DISABLE_VALUE_TYPE(
1059 ash::switches::kAshDisableMaximizeModeWindowBackdrop), 1059 ash::switches::kAshDisableMaximizeModeWindowBackdrop),
1060 }, 1060 },
1061 { 1061 {
1062 "ash-enable-docked-windows", IDS_FLAGS_ASH_ENABLE_DOCKED_WINDOWS_NAME,
1063 IDS_FLAGS_ASH_ENABLE_DOCKED_WINDOWS_DESCRIPTION, kOsAll,
1064 SINGLE_VALUE_TYPE(ash::switches::kAshEnableDockedWindows),
1065 },
1066 {
1067 "ash-enable-mirrored-screen", IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_NAME, 1062 "ash-enable-mirrored-screen", IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_NAME,
1068 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_DESCRIPTION, kOsCrOS, 1063 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_DESCRIPTION, kOsCrOS,
1069 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMirroredScreen), 1064 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMirroredScreen),
1070 }, 1065 },
1071 {"ash-shelf-color", IDS_FLAGS_ASH_SHELF_COLOR, 1066 {"ash-shelf-color", IDS_FLAGS_ASH_SHELF_COLOR,
1072 IDS_FLAGS_ASH_SHELF_COLOR_DESCRIPTION, kOsCrOS, 1067 IDS_FLAGS_ASH_SHELF_COLOR_DESCRIPTION, kOsCrOS,
1073 MULTI_VALUE_TYPE(kAshShelfColorChoices)}, 1068 MULTI_VALUE_TYPE(kAshShelfColorChoices)},
1074 #endif // USE_ASH 1069 #endif // USE_ASH
1075 #if defined(OS_CHROMEOS) 1070 #if defined(OS_CHROMEOS)
1076 {"material-design-ink-drop-animation-speed", 1071 {"material-design-ink-drop-animation-speed",
(...skipping 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after
2517 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2512 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2518 2513
2519 const FeatureEntry* GetFeatureEntries(size_t* count) { 2514 const FeatureEntry* GetFeatureEntries(size_t* count) {
2520 *count = arraysize(kFeatureEntries); 2515 *count = arraysize(kFeatureEntries);
2521 return kFeatureEntries; 2516 return kFeatureEntries;
2522 } 2517 }
2523 2518
2524 } // namespace testing 2519 } // namespace testing
2525 2520
2526 } // namespace about_flags 2521 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698