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

Unified Diff: third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.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/graphics/CompositorMutableStateProvider.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp b/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
index b38d0fac1f636ccfe082ec4e3552bab401b67e5c..cd167b1a8e21fd7a82fac1686d64d6862b90f366 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
@@ -39,10 +39,10 @@ CompositorMutableStateProvider::getMutableStateFor(uint64_t elementId) {
// Only if this is a new entry do we want to allocate a new mutation.
if (result.isNewEntry)
- result.storedValue->value = wrapUnique(new CompositorMutation);
+ result.storedValue->value = WTF::wrapUnique(new CompositorMutation);
- return wrapUnique(new CompositorMutableState(result.storedValue->value.get(),
- mainLayer, scrollLayer));
+ return WTF::wrapUnique(new CompositorMutableState(
+ result.storedValue->value.get(), mainLayer, scrollLayer));
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698