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

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

Issue 74563002: AndroidVideoEncodeAccelerator is born! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: kbr comments. 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 | 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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 "disable-webrtc-hw-decoding", 515 "disable-webrtc-hw-decoding",
516 IDS_FLAGS_DISABLE_WEBRTC_HW_DECODING_NAME, 516 IDS_FLAGS_DISABLE_WEBRTC_HW_DECODING_NAME,
517 IDS_FLAGS_DISABLE_WEBRTC_HW_DECODING_DESCRIPTION, 517 IDS_FLAGS_DISABLE_WEBRTC_HW_DECODING_DESCRIPTION,
518 kOsCrOS, 518 kOsCrOS,
519 SINGLE_VALUE_TYPE(switches::kDisableWebRtcHWDecoding) 519 SINGLE_VALUE_TYPE(switches::kDisableWebRtcHWDecoding)
520 }, 520 },
521 { 521 {
522 "disable-webrtc-hw-encoding", 522 "disable-webrtc-hw-encoding",
523 IDS_FLAGS_DISABLE_WEBRTC_HW_ENCODING_NAME, 523 IDS_FLAGS_DISABLE_WEBRTC_HW_ENCODING_NAME,
524 IDS_FLAGS_DISABLE_WEBRTC_HW_ENCODING_DESCRIPTION, 524 IDS_FLAGS_DISABLE_WEBRTC_HW_ENCODING_DESCRIPTION,
525 kOsCrOS, 525 kOsAndroid | kOsCrOS,
526 SINGLE_VALUE_TYPE(switches::kDisableWebRtcHWEncoding) 526 SINGLE_VALUE_TYPE(switches::kDisableWebRtcHWEncoding)
527 }, 527 },
528 #endif 528 #endif
529 #if defined(OS_ANDROID) 529 #if defined(OS_ANDROID)
530 { 530 {
531 "disable-webaudio", 531 "disable-webaudio",
532 IDS_FLAGS_DISABLE_WEBAUDIO_NAME, 532 IDS_FLAGS_DISABLE_WEBAUDIO_NAME,
533 IDS_FLAGS_DISABLE_WEBAUDIO_DESCRIPTION, 533 IDS_FLAGS_DISABLE_WEBAUDIO_DESCRIPTION,
534 kOsAndroid, 534 kOsAndroid,
535 SINGLE_VALUE_TYPE(switches::kDisableWebAudio) 535 SINGLE_VALUE_TYPE(switches::kDisableWebAudio)
(...skipping 1808 matching lines...) Expand 10 before | Expand all | Expand 10 after
2344 } 2344 }
2345 2345
2346 const Experiment* GetExperiments(size_t* count) { 2346 const Experiment* GetExperiments(size_t* count) {
2347 *count = num_experiments; 2347 *count = num_experiments;
2348 return experiments; 2348 return experiments;
2349 } 2349 }
2350 2350
2351 } // namespace testing 2351 } // namespace testing
2352 2352
2353 } // namespace about_flags 2353 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | content/browser/gpu/compositor_util.cc » ('j') | content/common/gpu/media/android_video_encode_accelerator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698