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

Side by Side Diff: content/renderer/media/media_stream_video_capturer_source.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_video_capturer_source.h" 5 #include "content/renderer/media/media_stream_video_capturer_source.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/callback_helpers.h" 8 #include "base/callback_helpers.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/macros.h"
10 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
11 #include "content/public/common/media_stream_request.h" 12 #include "content/public/common/media_stream_request.h"
12 #include "content/renderer/media/media_stream_constraints_util.h" 13 #include "content/renderer/media/media_stream_constraints_util.h"
13 #include "content/renderer/media/video_capture_impl_manager.h" 14 #include "content/renderer/media/video_capture_impl_manager.h"
14 #include "content/renderer/render_thread_impl.h" 15 #include "content/renderer/render_thread_impl.h"
15 #include "media/base/bind_to_current_loop.h" 16 #include "media/base/bind_to_current_loop.h"
16 #include "media/base/limits.h" 17 #include "media/base/limits.h"
17 #include "media/base/video_capturer_source.h" 18 #include "media/base/video_capturer_source.h"
18 #include "media/base/video_frame.h" 19 #include "media/base/video_frame.h"
19 20
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 void MediaStreamVideoCapturerSource::OnStarted(bool result) { 438 void MediaStreamVideoCapturerSource::OnStarted(bool result) {
438 OnStartDone(result ? MEDIA_DEVICE_OK : MEDIA_DEVICE_TRACK_START_FAILURE); 439 OnStartDone(result ? MEDIA_DEVICE_OK : MEDIA_DEVICE_TRACK_START_FAILURE);
439 } 440 }
440 441
441 const char* 442 const char*
442 MediaStreamVideoCapturerSource::GetPowerLineFrequencyForTesting() const { 443 MediaStreamVideoCapturerSource::GetPowerLineFrequencyForTesting() const {
443 return kPowerLineFrequency; 444 return kPowerLineFrequency;
444 } 445 }
445 446
446 } // namespace content 447 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/media_stream_video_capturer_source.h ('k') | content/renderer/media/media_stream_video_renderer_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698