summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/webrtc/video_engine/mock/mock_vie_frame_provider_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/webrtc/video_engine/mock/mock_vie_frame_provider_base.h')
-rw-r--r--chromium/third_party/webrtc/video_engine/mock/mock_vie_frame_provider_base.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/chromium/third_party/webrtc/video_engine/mock/mock_vie_frame_provider_base.h b/chromium/third_party/webrtc/video_engine/mock/mock_vie_frame_provider_base.h
new file mode 100644
index 00000000000..d4e17f4d27c
--- /dev/null
+++ b/chromium/third_party/webrtc/video_engine/mock/mock_vie_frame_provider_base.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+#ifndef WEBRTC_VIDEO_ENGINE_MOCK_MOCK_VIE_FRAME_PROVIDER_BASE_H_
+#define WEBRTC_VIDEO_ENGINE_MOCK_MOCK_VIE_FRAME_PROVIDER_BASE_H_
+
+#include "webrtc/video_engine/vie_frame_provider_base.h"
+#include "testing/gmock/include/gmock/gmock.h"
+
+namespace webrtc {
+
+class MockViEFrameCallback : public ViEFrameCallback {
+ public:
+ MOCK_METHOD4(DeliverFrame,
+ void(int id,
+ I420VideoFrame* video_frame,
+ int num_csrcs,
+ const uint32_t CSRC[kRtpCsrcSize]));
+ MOCK_METHOD2(DelayChanged, void(int id, int frame_delay));
+ MOCK_METHOD3(GetPreferedFrameSettings,
+ int(int* width, int* height, int* frame_rate));
+ MOCK_METHOD1(ProviderDestroyed, void(int id));
+};
+
+} // namespace webrtc
+
+#endif // WEBRTC_VIDEO_ENGINE_MOCK_MOCK_VIE_FRAME_PROVIDER_BASE_H_