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

Unified Diff: third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp

Issue 2859553002: Revert of [blink] Unique pointers in Platform.h (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
diff --git a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
index ba70929c487e4192ad1215b17d8c4182862cd3e5..0baaac087411a79d39cbfeef862ae44866565bce 100644
--- a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
+++ b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
@@ -225,7 +225,8 @@
// Create |m_frameGrabber| the first time.
if (!frame_grabber_) {
- frame_grabber_ = Platform::Current()->CreateImageCaptureFrameGrabber();
+ frame_grabber_ =
+ WTF::WrapUnique(Platform::Current()->CreateImageCaptureFrameGrabber());
}
if (!frame_grabber_) {

Powered by Google App Engine
This is Rietveld 408576698