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

Unified Diff: third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.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/gpu/SharedContextRateLimiter.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
index 3b9f99e91625681669bea96e322567b5b04b77b2..03f9dadf86855c1acaa77e8842a460c4ec97cea2 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
+++ b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
@@ -16,12 +16,12 @@ namespace blink {
std::unique_ptr<SharedContextRateLimiter> SharedContextRateLimiter::create(
unsigned maxPendingTicks) {
- return wrapUnique(new SharedContextRateLimiter(maxPendingTicks));
+ return WTF::wrapUnique(new SharedContextRateLimiter(maxPendingTicks));
}
SharedContextRateLimiter::SharedContextRateLimiter(unsigned maxPendingTicks)
: m_maxPendingTicks(maxPendingTicks), m_canUseSyncQueries(false) {
- m_contextProvider = wrapUnique(
+ m_contextProvider = WTF::wrapUnique(
Platform::current()->createSharedOffscreenGraphicsContext3DProvider());
if (!m_contextProvider)
return;

Powered by Google App Engine
This is Rietveld 408576698