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

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

Issue 10910194: Rename enable-media-source flag to disable-media-source (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
« no previous file with comments | « no previous file | no next file » | 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 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 SINGLE_VALUE_TYPE(switches::kEnableSpdy3) 527 SINGLE_VALUE_TYPE(switches::kEnableSpdy3)
528 }, 528 },
529 { 529 {
530 "enable-async-dns", 530 "enable-async-dns",
531 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, 531 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME,
532 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, 532 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION,
533 kOsWin | kOsMac | kOsLinux, 533 kOsWin | kOsMac | kOsLinux,
534 MULTI_VALUE_TYPE(kAsyncDnsChoices) 534 MULTI_VALUE_TYPE(kAsyncDnsChoices)
535 }, 535 },
536 { 536 {
537 "enable-media-source", 537 "disable-media-source",
538 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, 538 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME,
539 IDS_FLAGS_DISABLE_MEDIA_SOURCE_DESCRIPTION, 539 IDS_FLAGS_DISABLE_MEDIA_SOURCE_DESCRIPTION,
540 kOsAll, 540 kOsAll,
541 SINGLE_VALUE_TYPE(switches::kDisableMediaSource) 541 SINGLE_VALUE_TYPE(switches::kDisableMediaSource)
542 }, 542 },
543 { 543 {
544 "enable-encrypted-media", 544 "enable-encrypted-media",
545 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_NAME, 545 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_NAME,
546 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_DESCRIPTION, 546 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_DESCRIPTION,
547 kOsAll, 547 kOsAll,
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 } 1361 }
1362 1362
1363 const Experiment* GetExperiments(size_t* count) { 1363 const Experiment* GetExperiments(size_t* count) {
1364 *count = num_experiments; 1364 *count = num_experiments;
1365 return experiments; 1365 return experiments;
1366 } 1366 }
1367 1367
1368 } // namespace testing 1368 } // namespace testing
1369 1369
1370 } // namespace about_flags 1370 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698