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 166443004: Add frame color option to packaged app windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments Created 6 years, 10 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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1546 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 "enable-tcp-fast-open", 1557 "enable-tcp-fast-open",
1558 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, 1558 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME,
1559 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, 1559 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION,
1560 kOsLinux | kOsCrOS | kOsAndroid, 1560 kOsLinux | kOsCrOS | kOsAndroid,
1561 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) 1561 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen)
1562 }, 1562 },
1563 { 1563 {
1564 "apps-use-native-frame", 1564 "apps-use-native-frame",
1565 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, 1565 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME,
1566 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, 1566 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION,
1567 kOsMac | kOsWin, 1567 kOsMac,
1568 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) 1568 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame)
1569 }, 1569 },
1570 { 1570 {
1571 "enable-syncfs-directory-operation", 1571 "enable-syncfs-directory-operation",
1572 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, 1572 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME,
1573 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, 1573 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION,
1574 kOsAll, 1574 kOsAll,
1575 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), 1575 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation),
1576 }, 1576 },
1577 #if defined(ENABLE_MDNS) 1577 #if defined(ENABLE_MDNS)
(...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after
2510 } 2510 }
2511 2511
2512 const Experiment* GetExperiments(size_t* count) { 2512 const Experiment* GetExperiments(size_t* count) {
2513 *count = num_experiments; 2513 *count = num_experiments;
2514 return experiments; 2514 return experiments;
2515 } 2515 }
2516 2516
2517 } // namespace testing 2517 } // namespace testing
2518 2518
2519 } // namespace about_flags 2519 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698