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

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

Issue 11416367: Add Opus decode wrapper to media. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased (changed machines) Address most comments. Added TODO for Opus buffering question. Created 8 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 | 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 kOsAll, 628 kOsAll,
629 SINGLE_VALUE_TYPE(switches::kDisableMediaSource) 629 SINGLE_VALUE_TYPE(switches::kDisableMediaSource)
630 }, 630 },
631 { 631 {
632 "enable-encrypted-media", 632 "enable-encrypted-media",
633 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_NAME, 633 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_NAME,
634 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_DESCRIPTION, 634 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_DESCRIPTION,
635 kOsAll, 635 kOsAll,
636 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) 636 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia)
637 }, 637 },
638 {
639 "enable-vp9-opus-playback",
640 IDS_FLAGS_ENABLE_VP9_OPUS_PLAYBACK_NAME,
641 IDS_FLAGS_ENABLE_VP9_OPUS_PLAYBACK_DESCRIPTION,
642 kOsAll,
643 SINGLE_VALUE_TYPE(switches::kEnableVp9OpusPlayback)
644 },
638 #if defined(USE_ASH) 645 #if defined(USE_ASH)
639 { 646 {
640 "aura-google-dialog-frames", 647 "aura-google-dialog-frames",
641 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, 648 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME,
642 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, 649 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION,
643 kOsWin | kOsLinux | kOsCrOS, 650 kOsWin | kOsLinux | kOsCrOS,
644 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) 651 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames)
645 }, 652 },
646 { 653 {
647 "ash-disable-auto-window-placement", 654 "ash-disable-auto-window-placement",
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 } 1638 }
1632 1639
1633 const Experiment* GetExperiments(size_t* count) { 1640 const Experiment* GetExperiments(size_t* count) {
1634 *count = num_experiments; 1641 *count = num_experiments;
1635 return experiments; 1642 return experiments;
1636 } 1643 }
1637 1644
1638 } // namespace testing 1645 } // namespace testing
1639 1646
1640 } // namespace about_flags 1647 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698