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

Unified Diff: third_party/WebKit/public/platform/modules/imagecapture/image_capture.mojom

Issue 2027023002: ImageCapture: move mojom from WebKit/public to media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restricted DEPS, added .mojom comments Created 4 years, 7 months 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 | « third_party/WebKit/public/platform/modules/imagecapture/OWNERS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/modules/imagecapture/image_capture.mojom
diff --git a/third_party/WebKit/public/platform/modules/imagecapture/image_capture.mojom b/third_party/WebKit/public/platform/modules/imagecapture/image_capture.mojom
deleted file mode 100644
index 63255316a6bf85559f984adb12498629ea9868c1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/platform/modules/imagecapture/image_capture.mojom
+++ /dev/null
@@ -1,27 +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.
-
-module blink.mojom;
-
-// Equivalent to idl MediaSettingsRange, arbitrary range representing the
-// allowed variations of a Capability or an Option.
-// http://w3c.github.io/mediacapture-image/#mediasettingsrange
-struct Range {
- uint32 max;
- uint32 min;
- uint32 current;
-};
-
-struct PhotoCapabilities {
- Range zoom;
-};
-
-interface ImageCapture
-{
- GetCapabilities(string source_id)
- => (PhotoCapabilities capabilities);
-
- TakePhoto(string source_id)
- => (string mime_type, array<uint8> data);
-};
« no previous file with comments | « third_party/WebKit/public/platform/modules/imagecapture/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698