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

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

Issue 251993002: [Mac] Implement frame.[color|inactiveColor]. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implement NativeAppWindow::[Active|Inactive]FrameColor Created 6 years, 7 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 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) 1290 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices)
1291 }, 1291 },
1292 { 1292 {
1293 "enable-tcp-fast-open", 1293 "enable-tcp-fast-open",
1294 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, 1294 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME,
1295 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, 1295 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION,
1296 kOsLinux | kOsCrOS | kOsAndroid, 1296 kOsLinux | kOsCrOS | kOsAndroid,
1297 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) 1297 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen)
1298 }, 1298 },
1299 { 1299 {
1300 "apps-use-native-frame",
1301 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME,
1302 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION,
1303 kOsMac,
1304 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame)
1305 },
1306 {
1307 "enable-syncfs-directory-operation", 1300 "enable-syncfs-directory-operation",
1308 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, 1301 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME,
1309 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, 1302 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION,
1310 kOsAll, 1303 kOsAll,
1311 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), 1304 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation),
1312 }, 1305 },
1313 #if defined(ENABLE_SERVICE_DISCOVERY) 1306 #if defined(ENABLE_SERVICE_DISCOVERY)
1314 { 1307 {
1315 "disable-device-discovery", 1308 "disable-device-discovery",
1316 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME, 1309 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME,
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after
2295 } 2288 }
2296 2289
2297 const Experiment* GetExperiments(size_t* count) { 2290 const Experiment* GetExperiments(size_t* count) {
2298 *count = num_experiments; 2291 *count = num_experiments;
2299 return experiments; 2292 return experiments;
2300 } 2293 }
2301 2294
2302 } // namespace testing 2295 } // namespace testing
2303 2296
2304 } // namespace about_flags 2297 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698