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

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: Remove extra "private" 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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 }, 803 },
804 #endif 804 #endif
805 { 805 {
806 "enable-views-textfield", 806 "enable-views-textfield",
807 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, 807 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME,
808 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, 808 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION,
809 kOsWin, 809 kOsWin,
810 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), 810 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield),
811 }, 811 },
812 { 812 {
813 "enable-frameless-constrained-dialogs",
814 IDS_FLAGS_ENABLE_FRAMELESS_DIALOG_NAME,
815 IDS_FLAGS_ENABLE_FRAMELESS_DIALOG_DESCRIPTION,
816 kOsWin | kOsCrOS,
817 SINGLE_VALUE_TYPE(switches::kEnableFramelessConstrainedDialogs),
818 },
819 {
813 "new-checkbox-style", 820 "new-checkbox-style",
814 IDS_FLAGS_NEW_CHECKBOX_STYLE, 821 IDS_FLAGS_NEW_CHECKBOX_STYLE,
815 IDS_FLAGS_NEW_CHECKBOX_STYLE_DESCRIPTION, 822 IDS_FLAGS_NEW_CHECKBOX_STYLE_DESCRIPTION,
816 kOsLinux | kOsCrOS, 823 kOsLinux | kOsCrOS,
817 SINGLE_VALUE_TYPE(switches::kNewCheckboxStyle), 824 SINGLE_VALUE_TYPE(switches::kNewCheckboxStyle),
818 }, 825 },
819 { 826 {
820 "disable-non-fullscreen-mouse-lock", 827 "disable-non-fullscreen-mouse-lock",
821 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_NAME, 828 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_NAME,
822 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_DESCRIPTION, 829 IDS_FLAGS_DISABLE_NON_FULLSCREEN_MOUSE_LOCK_DESCRIPTION,
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
1282 } 1289 }
1283 1290
1284 const Experiment* GetExperiments(size_t* count) { 1291 const Experiment* GetExperiments(size_t* count) {
1285 *count = num_experiments; 1292 *count = num_experiments;
1286 return experiments; 1293 return experiments;
1287 } 1294 }
1288 1295
1289 } // namespace testing 1296 } // namespace testing
1290 1297
1291 } // namespace about_flags 1298 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/views/constrained_window_frame_simple.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698