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

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

Issue 10830268: Allow audio system to handle synchronized low-latency audio I/O (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 }, 909 },
910 #endif 910 #endif
911 { 911 {
912 "disable-website-settings", // FLAGS:RECORD_UMA 912 "disable-website-settings", // FLAGS:RECORD_UMA
913 IDS_FLAGS_DISABLE_WEBSITE_SETTINGS_NAME, 913 IDS_FLAGS_DISABLE_WEBSITE_SETTINGS_NAME,
914 IDS_FLAGS_DISABLE_WEBSITE_SETTINGS_DESCRIPTION, 914 IDS_FLAGS_DISABLE_WEBSITE_SETTINGS_DESCRIPTION,
915 kOsAll, 915 kOsAll,
916 SINGLE_VALUE_TYPE(switches::kDisableWebsiteSettings), 916 SINGLE_VALUE_TYPE(switches::kDisableWebsiteSettings),
917 }, 917 },
918 { 918 {
919 "enable-webaudio-input",
920 IDS_FLAGS_ENABLE_WEBAUDIO_INPUT_NAME,
921 IDS_FLAGS_ENABLE_WEBAUDIO_INPUT_DESCRIPTION,
922 kOsAll,
923 SINGLE_VALUE_TYPE(switches::kEnableWebAudioInput),
924 },
925 {
919 "enable-contacts", 926 "enable-contacts",
920 IDS_FLAGS_ENABLE_CONTACTS_NAME, 927 IDS_FLAGS_ENABLE_CONTACTS_NAME,
921 IDS_FLAGS_ENABLE_CONTACTS_DESCRIPTION, 928 IDS_FLAGS_ENABLE_CONTACTS_DESCRIPTION,
922 kOsCrOS, 929 kOsCrOS,
923 SINGLE_VALUE_TYPE(switches::kEnableContacts) 930 SINGLE_VALUE_TYPE(switches::kEnableContacts)
924 }, 931 },
925 #if defined(USE_ASH) 932 #if defined(USE_ASH)
926 { "ash-enable-advanced-gestures", 933 { "ash-enable-advanced-gestures",
927 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, 934 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME,
928 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, 935 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION,
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
1359 } 1366 }
1360 1367
1361 const Experiment* GetExperiments(size_t* count) { 1368 const Experiment* GetExperiments(size_t* count) {
1362 *count = num_experiments; 1369 *count = num_experiments;
1363 return experiments; 1370 return experiments;
1364 } 1371 }
1365 1372
1366 } // namespace testing 1373 } // namespace testing
1367 1374
1368 } // namespace about_flags 1375 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698