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

Unified Diff: third_party/WebKit/Source/core/style/DataPersistent.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/core/style/DataPersistent.h
diff --git a/third_party/WebKit/Source/core/style/DataPersistent.h b/third_party/WebKit/Source/core/style/DataPersistent.h
index 36ed6da724adfd302566633b8b953d36512ce107..78ade62015c02ca7b7f23bbf9f493e8ca6fa36b0 100644
--- a/third_party/WebKit/Source/core/style/DataPersistent.h
+++ b/third_party/WebKit/Source/core/style/DataPersistent.h
@@ -33,7 +33,7 @@ class DataPersistent {
DataPersistent(const DataPersistent& other) : m_ownCopy(false) {
if (other.m_data)
- m_data = wrapUnique(new Persistent<T>(other.m_data->get()));
+ m_data = WTF::wrapUnique(new Persistent<T>(other.m_data->get()));
// Invalidated, subsequent mutations will happen on a new copy.
//
@@ -57,7 +57,7 @@ class DataPersistent {
void init() {
ASSERT(!m_data);
- m_data = wrapUnique(new Persistent<T>(T::create()));
+ m_data = WTF::wrapUnique(new Persistent<T>(T::create()));
m_ownCopy = true;
}

Powered by Google App Engine
This is Rietveld 408576698