Chromium Code Reviews| Index: content/browser/media/capture/image_capture_impl.h |
| diff --git a/content/browser/media/capture/image_capture_impl.h b/content/browser/media/capture/image_capture_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1bca94aca577bd33e6991316dee41039be0cd702 |
| --- /dev/null |
| +++ b/content/browser/media/capture/image_capture_impl.h |
| @@ -0,0 +1,35 @@ |
| +// 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 CONTENT_BROWSER_MEDIA_CAPTURE_IMAGE_CAPTURE_IMPL_H_ |
| +#define CONTENT_BROWSER_MEDIA_CAPTURE_IMAGE_CAPTURE_IMPL_H_ |
| + |
| +#include "mojo/public/cpp/bindings/interface_request.h" |
| +#include "mojo/public/cpp/bindings/string.h" |
| +#include "mojo/public/cpp/bindings/strong_binding.h" |
| +#include "third_party/WebKit/public/platform/modules/imagecapture/image_capture.mojom.h" |
| + |
| +namespace content { |
| + |
| +class ImageCaptureImpl : public blink::mojom::ImageCapture { |
| + public: |
| + static void Create( |
| + mojo::InterfaceRequest<blink::mojom::ImageCapture> request); |
| + ~ImageCaptureImpl() override; |
| + |
| + void TakePhoto(const mojo::String& sourceid, |
|
miu
2016/05/02 21:44:51
Should the argument name be source_id (or is this
mcasas
2016/05/02 22:03:35
Yes. Done.
|
| + const TakePhotoCallback& callback) override; |
| + |
| + private: |
| + explicit ImageCaptureImpl( |
| + mojo::InterfaceRequest<blink::mojom::ImageCapture> request); |
| + |
| + mojo::StrongBinding<blink::mojom::ImageCapture> binding_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ImageCaptureImpl); |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_MEDIA_CAPTURE_IMAGE_CAPTURE_IMPL_H_ |