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

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

Issue 1274083002: Add flag to show toolkit-views dialogs on Mac, start with HTTP-Auth. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase ug - fix histograms: knew I forgot to rename something (darn flaky tryjobs..) Created 5 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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 2023 matching lines...) Expand 10 before | Expand all | Expand 10 after
2034 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION, 2034 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION,
2035 kOsMac, 2035 kOsMac,
2036 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows, 2036 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows,
2037 switches::kDisableMacViewsNativeAppWindows)}, 2037 switches::kDisableMacViewsNativeAppWindows)},
2038 {"app-window-cycling", 2038 {"app-window-cycling",
2039 IDS_FLAGS_APP_WINDOW_CYCLING_NAME, 2039 IDS_FLAGS_APP_WINDOW_CYCLING_NAME,
2040 IDS_FLAGS_APP_WINDOW_CYCLING_DESCRIPTION, 2040 IDS_FLAGS_APP_WINDOW_CYCLING_DESCRIPTION,
2041 kOsMac, 2041 kOsMac,
2042 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppWindowCycling, 2042 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppWindowCycling,
2043 switches::kDisableAppWindowCycling)}, 2043 switches::kDisableAppWindowCycling)},
2044 {"mac-views-dialogs",
2045 IDS_FLAGS_MAC_VIEWS_DIALOGS_NAME,
2046 IDS_FLAGS_MAC_VIEWS_DIALOGS_DESCRIPTION,
2047 kOsMac,
2048 SINGLE_VALUE_TYPE(switches::kEnableMacViewsDialogs)},
2044 #endif 2049 #endif
2045 #if defined(ENABLE_WEBVR) 2050 #if defined(ENABLE_WEBVR)
2046 {"enable-webvr", 2051 {"enable-webvr",
2047 IDS_FLAGS_ENABLE_WEBVR_NAME, 2052 IDS_FLAGS_ENABLE_WEBVR_NAME,
2048 IDS_FLAGS_ENABLE_WEBVR_DESCRIPTION, 2053 IDS_FLAGS_ENABLE_WEBVR_DESCRIPTION,
2049 kOsAll, 2054 kOsAll,
2050 SINGLE_VALUE_TYPE(switches::kEnableWebVR)}, 2055 SINGLE_VALUE_TYPE(switches::kEnableWebVR)},
2051 #endif 2056 #endif
2052 #if defined(OS_CHROMEOS) 2057 #if defined(OS_CHROMEOS)
2053 {"disable-accelerated-mjpeg-decode", 2058 {"disable-accelerated-mjpeg-decode",
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
2763 } 2768 }
2764 2769
2765 const Experiment* GetExperiments(size_t* count) { 2770 const Experiment* GetExperiments(size_t* count) {
2766 *count = num_experiments; 2771 *count = num_experiments;
2767 return experiments; 2772 return experiments;
2768 } 2773 }
2769 2774
2770 } // namespace testing 2775 } // namespace testing
2771 2776
2772 } // namespace about_flags 2777 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698