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

Unified Diff: media/capture/video/video_capture_device.cc

Issue 1815983003: Remove deprecated QTKit Video Capture Support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/capture/video/video_capture_device.h ('k') | media/capture/video/video_capture_device_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/video/video_capture_device.cc
diff --git a/media/capture/video/video_capture_device.cc b/media/capture/video/video_capture_device.cc
index f3fc56553c08f5a15f097104220e4d690e2858c0..61a752f7ca8c5c8618ff478988d7c958d656780f 100644
--- a/media/capture/video/video_capture_device.cc
+++ b/media/capture/video/video_capture_device.cc
@@ -57,9 +57,7 @@ VideoCaptureDevice::Name::Name(const std::string& name,
: device_name_(name),
unique_id_(id),
capture_api_class_(api_type),
- transport_type_(OTHER_TRANSPORT),
- is_blacklisted_(false) {
-}
+ transport_type_(OTHER_TRANSPORT) {}
VideoCaptureDevice::Name::Name(const std::string& name,
const std::string& id,
@@ -68,9 +66,7 @@ VideoCaptureDevice::Name::Name(const std::string& name,
: device_name_(name),
unique_id_(id),
capture_api_class_(api_type),
- transport_type_(transport_type),
- is_blacklisted_(false) {
-}
+ transport_type_(transport_type) {}
#elif defined(ANDROID)
VideoCaptureDevice::Name::Name(const std::string& name,
const std::string& id,
@@ -109,8 +105,6 @@ const char* VideoCaptureDevice::Name::GetCaptureApiTypeString() const {
switch (capture_api_type()) {
case AVFOUNDATION:
return "AV Foundation";
- case QTKIT:
- return "QTKit";
case DECKLINK:
return "DeckLink";
default:
« no previous file with comments | « media/capture/video/video_capture_device.h ('k') | media/capture/video/video_capture_device_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698