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

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: Rebase 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
« no previous file with comments | « apps/ui/views/app_window_frame_view.cc ('k') | chrome/browser/apps/app_window_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1506 matching lines...) Expand 10 before | Expand all | Expand 10 after
1517 "enable-tcp-fast-open", 1517 "enable-tcp-fast-open",
1518 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, 1518 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME,
1519 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, 1519 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION,
1520 kOsLinux | kOsCrOS | kOsAndroid, 1520 kOsLinux | kOsCrOS | kOsAndroid,
1521 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) 1521 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen)
1522 }, 1522 },
1523 { 1523 {
1524 "apps-use-native-frame", 1524 "apps-use-native-frame",
1525 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, 1525 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME,
1526 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, 1526 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION,
1527 kOsMac | kOsWin, 1527 kOsMac,
1528 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) 1528 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame)
1529 }, 1529 },
1530 { 1530 {
1531 "enable-syncfs-directory-operation", 1531 "enable-syncfs-directory-operation",
1532 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, 1532 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME,
1533 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, 1533 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION,
1534 kOsAll, 1534 kOsAll,
1535 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), 1535 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation),
1536 }, 1536 },
1537 #if defined(ENABLE_MDNS) 1537 #if defined(ENABLE_MDNS)
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
2461 } 2461 }
2462 2462
2463 const Experiment* GetExperiments(size_t* count) { 2463 const Experiment* GetExperiments(size_t* count) {
2464 *count = num_experiments; 2464 *count = num_experiments;
2465 return experiments; 2465 return experiments;
2466 } 2466 }
2467 2467
2468 } // namespace testing 2468 } // namespace testing
2469 2469
2470 } // namespace about_flags 2470 } // namespace about_flags
OLDNEW
« no previous file with comments | « apps/ui/views/app_window_frame_view.cc ('k') | chrome/browser/apps/app_window_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698