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

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: . 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
« no previous file with comments | « no previous file | content/browser/gpu/compositor_util.cc » ('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 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 1816 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 | content/browser/gpu/compositor_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698