| 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..eef67328c01aeeef056621cfb4ac0ba1a95fbee9
|
| --- /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& source_id,
|
| + 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_
|
|
|