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

Unified Diff: media/video/capture/mock_video_capture_event_handler.h

Issue 263323003: Revert of Refactor video capturing code in the render process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/media.gyp ('k') | media/video/capture/mock_video_capture_event_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/capture/mock_video_capture_event_handler.h
diff --git a/media/video/capture/mock_video_capture_event_handler.h b/media/video/capture/mock_video_capture_event_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..e71e8dd10a95ddc7b8f182bbca710a567c28244d
--- /dev/null
+++ b/media/video/capture/mock_video_capture_event_handler.h
@@ -0,0 +1,40 @@
+// Copyright 2014 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.
+
+#ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_EVENT_HANDLER_H_
+#define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_EVENT_HANDLER_H_
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "media/video/capture/video_capture.h"
+#include "testing/gmock/include/gmock/gmock.h"
+
+namespace media {
+
+class MockVideoCaptureEventHandler : public VideoCapture::EventHandler {
+ public:
+ MockVideoCaptureEventHandler();
+ virtual ~MockVideoCaptureEventHandler();
+
+ // EventHandler implementation.
+ MOCK_METHOD1(OnStarted, void(VideoCapture* capture));
+ MOCK_METHOD1(OnStopped, void(VideoCapture* capture));
+ MOCK_METHOD1(OnPaused, void(VideoCapture* capture));
+ MOCK_METHOD2(OnError, void(VideoCapture* capture, int error_code));
+ MOCK_METHOD1(OnRemoved, void(VideoCapture* capture));
+ MOCK_METHOD2(OnFrameReady,
+ void(VideoCapture* capture,
+ const scoped_refptr<VideoFrame>& frame));
+ MOCK_METHOD2(OnDeviceInfoReceived,
+ void(VideoCapture* capture,
+ const VideoCaptureFormat& device_info));
+ MOCK_METHOD1(OnDeviceSupportedFormatsEnumerated,
+ void(const media::VideoCaptureFormats& supported_formats));
+ MOCK_METHOD1(OnDeviceFormatsInUseReceived,
+ void(const media::VideoCaptureFormats& formats_in_use));
+};
+
+} // namespace media
+
+#endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_EVENT_HANDLER_H_
« no previous file with comments | « media/media.gyp ('k') | media/video/capture/mock_video_capture_event_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698