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

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

Issue 10631010: Change style of ConstrainedWindowViews. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace Created 8 years, 5 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 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 }, 796 },
797 #endif 797 #endif
798 { 798 {
799 "enable-views-textfield", 799 "enable-views-textfield",
800 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, 800 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME,
801 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, 801 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION,
802 kOsWin, 802 kOsWin,
803 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), 803 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield),
804 }, 804 },
805 { 805 {
806 "enable-frameless-constrained-dialogs",
807 IDS_FLAGS_ENABLE_FRAMELESS_DIALOG_NAME,
808 IDS_FLAGS_ENABLE_FRAMELESS_DIALOG_DESCRIPTION,
809 kOsWin | kOsCrOS,
810 SINGLE_VALUE_TYPE(switches::kEnableFramelessConstrainedDialogs),
811 },
812 {
806 "new-checkbox-style", 813 "new-checkbox-style",
807 IDS_FLAGS_NEW_CHECKBOX_STYLE, 814 IDS_FLAGS_NEW_CHECKBOX_STYLE,
808 IDS_FLAGS_NEW_CHECKBOX_STYLE_DESCRIPTION, 815 IDS_FLAGS_NEW_CHECKBOX_STYLE_DESCRIPTION,
809 kOsLinux | kOsCrOS, 816 kOsLinux | kOsCrOS,
810 SINGLE_VALUE_TYPE(switches::kNewCheckboxStyle), 817 SINGLE_VALUE_TYPE(switches::kNewCheckboxStyle),
811 }, 818 },
812 { 819 {
813 "disable-non-fullscreen-mouse-lock", 820 "disable-non-fullscreen-mouse-lock",
814 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_NAME, 821 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_NAME,
815 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_DESCRIPTION, 822 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_DESCRIPTION,
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 } 1275 }
1269 1276
1270 const Experiment* GetExperiments(size_t* count) { 1277 const Experiment* GetExperiments(size_t* count) {
1271 *count = num_experiments; 1278 *count = num_experiments;
1272 return experiments; 1279 return experiments;
1273 } 1280 }
1274 1281
1275 } // namespace testing 1282 } // namespace testing
1276 1283
1277 } // namespace about_flags 1284 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698