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

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

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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 1ab4ba825acf98be81f9ade7ee8eafe619d88258..e843453817875b3eba3ce73260d99be5fc2c060c 100644
--- a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
+++ b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
@@ -248,9 +248,10 @@ ScriptPromise ImageCapture::grabFrame(ScriptState* scriptState,
}
// Create |m_frameGrabber| the first time.
- if (!m_frameGrabber)
+ if (!m_frameGrabber) {
m_frameGrabber =
- wrapUnique(Platform::current()->createImageCaptureFrameGrabber());
+ WTF::wrapUnique(Platform::current()->createImageCaptureFrameGrabber());
+ }
if (!m_frameGrabber) {
resolver->reject(DOMException::create(

Powered by Google App Engine
This is Rietveld 408576698