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

Unified Diff: third_party/WebKit/Source/modules/webmidi/MIDIAccessor.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/webmidi/MIDIAccessor.cpp
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIAccessor.cpp b/third_party/WebKit/Source/modules/webmidi/MIDIAccessor.cpp
index 1499e5238953c80b3decbe786b6de4ec02530ba6..c02a951d11a4370de73028c4da220816dfce9d89 100644
--- a/third_party/WebKit/Source/modules/webmidi/MIDIAccessor.cpp
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIAccessor.cpp
@@ -44,13 +44,13 @@ namespace blink {
// Factory method
std::unique_ptr<MIDIAccessor> MIDIAccessor::create(MIDIAccessorClient* client) {
- return wrapUnique(new MIDIAccessor(client));
+ return WTF::wrapUnique(new MIDIAccessor(client));
}
MIDIAccessor::MIDIAccessor(MIDIAccessorClient* client) : m_client(client) {
DCHECK(client);
- m_accessor = wrapUnique(Platform::current()->createMIDIAccessor(this));
+ m_accessor = WTF::wrapUnique(Platform::current()->createMIDIAccessor(this));
DCHECK(m_accessor);
}

Powered by Google App Engine
This is Rietveld 408576698