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

Unified Diff: services/video_capture/mock_video_capture_device_impl.h

Issue 2502483003: [Mojo Video Capture] Cleanup naming of classes/files in services/video_capture (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 | « services/video_capture/mock_receiver.cc ('k') | services/video_capture/mock_video_capture_device_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/video_capture/mock_video_capture_device_impl.h
diff --git a/services/video_capture/mock_video_capture_device_impl.h b/services/video_capture/mock_video_capture_device_impl.h
deleted file mode 100644
index ed121b6120dd62032e91e9e2e6b27f3f919f86dc..0000000000000000000000000000000000000000
--- a/services/video_capture/mock_video_capture_device_impl.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2016 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 SERVICES_VIDEO_CAPTURE_MOCK_VIDEO_CAPTURE_DEVICE_IMPL_H_
-#define SERVICES_VIDEO_CAPTURE_MOCK_VIDEO_CAPTURE_DEVICE_IMPL_H_
-
-#include "mojo/public/cpp/bindings/binding.h"
-#include "services/video_capture/public/interfaces/mock_video_capture_device.mojom.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-namespace video_capture {
-
-class MockVideoCaptureDeviceImpl : public mojom::MockVideoCaptureDevice {
- public:
- MockVideoCaptureDeviceImpl(mojom::MockVideoCaptureDeviceRequest request);
- ~MockVideoCaptureDeviceImpl() override;
-
- // Use forwarding method to work around gmock not supporting move-only types.
- void AllocateAndStart(mojom::MockDeviceClientPtr client) override;
-
- MOCK_METHOD1(AllocateAndStartPtr, void(mojom::MockDeviceClientPtr*));
- MOCK_METHOD0(StopAndDeAllocate, void());
-
- private:
- mojo::Binding<mojom::MockVideoCaptureDevice> binding_;
-};
-
-} // namespace video_capture
-
-#endif // SERVICES_VIDEO_CAPTURE_MOCK_VIDEO_CAPTURE_DEVICE_IMPL_H_
« no previous file with comments | « services/video_capture/mock_receiver.cc ('k') | services/video_capture/mock_video_capture_device_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698