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

Unified Diff: services/video_capture/device_client_media_to_mojo_adapter.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/BUILD.gn ('k') | services/video_capture/device_client_media_to_mojo_adapter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/video_capture/device_client_media_to_mojo_adapter.h
diff --git a/services/video_capture/device_client_media_to_mojo_adapter.h b/services/video_capture/device_client_media_to_mojo_adapter.h
deleted file mode 100644
index bd72a3b619e5682002cc9654d6bb89f1ef18577e..0000000000000000000000000000000000000000
--- a/services/video_capture/device_client_media_to_mojo_adapter.h
+++ /dev/null
@@ -1,32 +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_DEVICE_CLIENT_MEDIA_TO_MOJO_ADAPTER_H_
-#define SERVICES_VIDEO_CAPTURE_DEVICE_CLIENT_MEDIA_TO_MOJO_ADAPTER_H_
-
-#include "media/capture/video/video_capture_device.h"
-#include "mojo/public/cpp/bindings/strong_binding.h"
-#include "services/video_capture/public/interfaces/mock_video_capture_device.mojom.h"
-
-namespace video_capture {
-
-// Adapter that allows a media::VideoCaptureDevice::Client to be used in place
-// of a mojom::MockDeviceClient. Since the implemented interface
-// MockDeviceClient is empty, its purpose is mostly to own the wrapped
-// instance of media::VideoCaptureDevice::Client and keep it alive until the
-// connection is closed.
-class DeviceClientMediaToMojoAdapter : public mojom::MockDeviceClient {
- public:
- ~DeviceClientMediaToMojoAdapter() override;
-
- DeviceClientMediaToMojoAdapter(
- std::unique_ptr<media::VideoCaptureDevice::Client> client);
-
- private:
- std::unique_ptr<media::VideoCaptureDevice::Client> client_;
-};
-
-} // namespace video_capture
-
-#endif // SERVICES_VIDEO_CAPTURE_DEVICE_CLIENT_MEDIA_TO_MOJO_ADAPTER_H_
« no previous file with comments | « services/video_capture/BUILD.gn ('k') | services/video_capture/device_client_media_to_mojo_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698