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

Side by Side Diff: third_party/WebKit/Source/modules/imagecapture/ImageCapture.h

Issue 2795693004: Image Capture: add |points_of_interest| to mojo and wire it to IDL layer (Closed)
Patch Set: reillyg@ comment Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ImageCapture_h 5 #ifndef ImageCapture_h
6 #define ImageCapture_h 6 #define ImageCapture_h
7 7
8 #include <memory> 8 #include <memory>
9 #include "bindings/core/v8/ActiveScriptWrappable.h" 9 #include "bindings/core/v8/ActiveScriptWrappable.h"
10 #include "bindings/core/v8/ScriptPromise.h" 10 #include "bindings/core/v8/ScriptPromise.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 DECLARE_VIRTUAL_TRACE(); 70 DECLARE_VIRTUAL_TRACE();
71 71
72 private: 72 private:
73 ImageCapture(ExecutionContext*, MediaStreamTrack*); 73 ImageCapture(ExecutionContext*, MediaStreamTrack*);
74 74
75 void onPhotoCapabilities(ScriptPromiseResolver*, 75 void onPhotoCapabilities(ScriptPromiseResolver*,
76 media::mojom::blink::PhotoCapabilitiesPtr); 76 media::mojom::blink::PhotoCapabilitiesPtr);
77 void onSetOptions(ScriptPromiseResolver*, bool); 77 void onSetOptions(ScriptPromiseResolver*, bool);
78 void onTakePhoto(ScriptPromiseResolver*, media::mojom::blink::BlobPtr); 78 void onTakePhoto(ScriptPromiseResolver*, media::mojom::blink::BlobPtr);
79 void onCapabilitiesUpdate(media::mojom::blink::PhotoCapabilitiesPtr); 79 void onCapabilitiesUpdate(media::mojom::blink::PhotoCapabilitiesPtr);
80
81 void onCapabilitiesUpdateInternal(
82 const media::mojom::blink::PhotoCapabilities&);
80 void onServiceConnectionError(); 83 void onServiceConnectionError();
81 84
82 Member<MediaStreamTrack> m_streamTrack; 85 Member<MediaStreamTrack> m_streamTrack;
83 std::unique_ptr<WebImageCaptureFrameGrabber> m_frameGrabber; 86 std::unique_ptr<WebImageCaptureFrameGrabber> m_frameGrabber;
84 media::mojom::blink::ImageCapturePtr m_service; 87 media::mojom::blink::ImageCapturePtr m_service;
85 88
86 MediaTrackCapabilities m_capabilities; 89 MediaTrackCapabilities m_capabilities;
87 MediaTrackConstraintSet m_currentConstraints; 90 MediaTrackConstraintSet m_currentConstraints;
88 91
92 HeapVector<Point2D> m_currentPointsOfInterest;
93
89 HeapHashSet<Member<ScriptPromiseResolver>> m_serviceRequests; 94 HeapHashSet<Member<ScriptPromiseResolver>> m_serviceRequests;
90 }; 95 };
91 96
92 } // namespace blink 97 } // namespace blink
93 98
94 #endif // ImageCapture_h 99 #endif // ImageCapture_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698