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

Unified Diff: content/browser/renderer_host/media/video_capture_controller_event_handler.cc

Issue 1017503002: VideoCaptureHost/VideoCaptureControllerEventHandler cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unneeded BindToCurrentLoop() Created 5 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
Index: content/browser/renderer_host/media/video_capture_controller_event_handler.cc
diff --git a/content/browser/renderer_host/media/video_capture_controller_event_handler.cc b/content/browser/renderer_host/media/video_capture_controller_event_handler.cc
deleted file mode 100644
index 7d2d0be32831e7d55de8e8d19dbca087b7d5c4e7..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/media/video_capture_controller_event_handler.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/browser/renderer_host/media/video_capture_controller_event_handler.h"
-
-namespace content {
-
-VideoCaptureControllerID::VideoCaptureControllerID(int did)
- : device_id(did) {
-}
-
-bool VideoCaptureControllerID::operator<(
- const VideoCaptureControllerID& vc) const {
- return this->device_id < vc.device_id;
-}
-
-bool VideoCaptureControllerID::operator==(
- const VideoCaptureControllerID& vc) const {
- return this->device_id == vc.device_id;
-}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698