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

Unified Diff: third_party/WebKit/Source/modules/shapedetection/DetectedFace.h

Issue 2873453004: Shape Detection: add SaveSameObject idl to SameObject annotations (Closed)
Patch Set: Removed [SaveSameObject] from members where it doesn't make sense Created 3 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
Index: third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
diff --git a/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h b/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
index 5c14f1d62987fee0dea8787d2f1802b218a4a2cc..969f432727d06c2aa9ed61ade7da84b545f46bbf 100644
--- a/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
+++ b/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
@@ -31,8 +31,8 @@ class MODULES_EXPORT DetectedFace final : public GarbageCollected<DetectedFace>,
explicit DetectedFace(DOMRect*);
DetectedFace(DOMRect*, const HeapVector<Landmark>&);
- Member<DOMRect> bounding_box_;
- HeapVector<Landmark> landmarks_;
+ const Member<DOMRect> bounding_box_;
+ const HeapVector<Landmark> landmarks_;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698