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

Side by Side Diff: media/base/media_switches.cc

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef Created 4 years, 12 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
« no previous file with comments | « media/base/media_resources.cc ('k') | media/base/mime_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 "build/build_config.h"
5 #include "media/base/media_switches.h" 6 #include "media/base/media_switches.h"
6 7
7 namespace switches { 8 namespace switches {
8 9
9 // Allow users to specify a custom buffer size for debugging purpose. 10 // Allow users to specify a custom buffer size for debugging purpose.
10 const char kAudioBufferSize[] = "audio-buffer-size"; 11 const char kAudioBufferSize[] = "audio-buffer-size";
11 12
12 // Set number of threads to use for video decoding. 13 // Set number of threads to use for video decoding.
13 const char kVideoThreads[] = "video-threads"; 14 const char kVideoThreads[] = "video-threads";
14 15
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 126
126 // Disables the new rendering algorithm for webrtc, which is designed to improve 127 // Disables the new rendering algorithm for webrtc, which is designed to improve
127 // the rendering smoothness. 128 // the rendering smoothness.
128 const char kDisableRTCSmoothnessAlgorithm[] = 129 const char kDisableRTCSmoothnessAlgorithm[] =
129 "disable-rtc-smoothness-algorithm"; 130 "disable-rtc-smoothness-algorithm";
130 131
131 // Use shared block-based buffering for media. 132 // Use shared block-based buffering for media.
132 const char kUseNewMediaCache[] = "use-new-media-cache"; 133 const char kUseNewMediaCache[] = "use-new-media-cache";
133 134
134 } // namespace switches 135 } // namespace switches
OLDNEW
« no previous file with comments | « media/base/media_resources.cc ('k') | media/base/mime_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698