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

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

Issue 2850593002: 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 c3fcaab468af77c205db6abef068653f878633dd..083e5955c86a1d71a6d73569ee885e239cba9431 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