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

Unified Diff: third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.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/platform/exported/WebFileSystemCallbacks.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp b/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
index 719b6fe8f188ce00537b6ff7551f91a462775c62..0b12a0133d0226bd6651a66f640686c6c52bf97d 100644
--- a/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
@@ -144,7 +144,7 @@ void WebFileSystemCallbacks::didResolveURL(const WebString& name,
void WebFileSystemCallbacks::didCreateFileWriter(WebFileWriter* webFileWriter,
long long length) {
ASSERT(!m_private.isNull());
- m_private->callbacks()->didCreateFileWriter(wrapUnique(webFileWriter),
+ m_private->callbacks()->didCreateFileWriter(WTF::wrapUnique(webFileWriter),
length);
m_private.reset();
}

Powered by Google App Engine
This is Rietveld 408576698