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

Side by Side Diff: content/renderer/media/media_stream_center.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 "content/renderer/media/media_stream_center.h" 5 #include "content/renderer/media/media_stream_center.h"
6 6
7 #include <stddef.h>
8
7 #include <string> 9 #include <string>
8 10
9 #include "base/command_line.h" 11 #include "base/command_line.h"
10 #include "base/logging.h" 12 #include "base/logging.h"
11 #include "content/common/media/media_stream_messages.h" 13 #include "content/common/media/media_stream_messages.h"
12 #include "content/public/common/content_switches.h" 14 #include "content/public/common/content_switches.h"
13 #include "content/public/renderer/media_stream_audio_sink.h" 15 #include "content/public/renderer/media_stream_audio_sink.h"
14 #include "content/public/renderer/render_thread.h" 16 #include "content/public/renderer/render_thread.h"
15 #include "content/renderer/media/media_stream.h" 17 #include "content/renderer/media/media_stream.h"
16 #include "content/renderer/media/media_stream_source.h" 18 #include "content/renderer/media/media_stream_source.h"
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 184
183 bool MediaStreamCenter::didRemoveMediaStreamTrack( 185 bool MediaStreamCenter::didRemoveMediaStreamTrack(
184 const blink::WebMediaStream& stream, 186 const blink::WebMediaStream& stream,
185 const blink::WebMediaStreamTrack& track) { 187 const blink::WebMediaStreamTrack& track) {
186 DVLOG(1) << "MediaStreamCenter::didRemoveMediaStreamTrack"; 188 DVLOG(1) << "MediaStreamCenter::didRemoveMediaStreamTrack";
187 MediaStream* native_stream = MediaStream::GetMediaStream(stream); 189 MediaStream* native_stream = MediaStream::GetMediaStream(stream);
188 return native_stream->RemoveTrack(track); 190 return native_stream->RemoveTrack(track);
189 } 191 }
190 192
191 } // namespace content 193 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/media_stream_center.h ('k') | content/renderer/media/media_stream_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698