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

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

Issue 29793006: Enable WebMIDI for Windows behind the flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Leave a TODO comment crbug.com/325810. Created 7 years 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 | « no previous file | media/media.gyp » ('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 1635 matching lines...) Expand 10 before | Expand all | Expand 10 after
1646 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, 1646 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION,
1647 kOsCrOS, 1647 kOsCrOS,
1648 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, 1648 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys,
1649 switches::kDisableStickyKeys) 1649 switches::kDisableStickyKeys)
1650 }, 1650 },
1651 #endif 1651 #endif
1652 { 1652 {
1653 "enable-web-midi", 1653 "enable-web-midi",
1654 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, 1654 IDS_FLAGS_ENABLE_WEB_MIDI_NAME,
1655 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, 1655 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION,
1656 kOsMac, 1656 kOsMac | kOsWin,
1657 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) 1657 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI)
1658 }, 1658 },
1659 { 1659 {
1660 "enable-new-profile-management", 1660 "enable-new-profile-management",
1661 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, 1661 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME,
1662 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, 1662 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION,
1663 kOsMac | kOsWin | kOsLinux, 1663 kOsMac | kOsWin | kOsLinux,
1664 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) 1664 SINGLE_VALUE_TYPE(switches::kNewProfileManagement)
1665 }, 1665 },
1666 { 1666 {
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
2352 } 2352 }
2353 2353
2354 const Experiment* GetExperiments(size_t* count) { 2354 const Experiment* GetExperiments(size_t* count) {
2355 *count = num_experiments; 2355 *count = num_experiments;
2356 return experiments; 2356 return experiments;
2357 } 2357 }
2358 2358
2359 } // namespace testing 2359 } // namespace testing
2360 2360
2361 } // namespace about_flags 2361 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698