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

Unified Diff: third_party/WebKit/Source/platform/exported/WebScrollbarImpl.h

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/WebScrollbarImpl.h
diff --git a/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.h b/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.h
index c6e7ba7d38ab2e8cfaebc13e461c82607671f477..5cb907972b0a7f83f55039c8ac81d1e5ed1d52fb 100644
--- a/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.h
+++ b/third_party/WebKit/Source/platform/exported/WebScrollbarImpl.h
@@ -43,7 +43,7 @@ class PLATFORM_EXPORT WebScrollbarImpl final : public WebScrollbar {
public:
static std::unique_ptr<WebScrollbarImpl> create(Scrollbar* scrollbar) {
- return wrapUnique(new WebScrollbarImpl(scrollbar));
+ return WTF::wrapUnique(new WebScrollbarImpl(scrollbar));
}
// Implement WebScrollbar methods

Powered by Google App Engine
This is Rietveld 408576698