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

Unified Diff: third_party/WebKit/Source/core/layout/TextAutosizer.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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/layout/TextAutosizer.cpp
diff --git a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
index 15110782489f22adff81f2c13ca06e1945b8edfa..0c58b1b6f36ae15dbbbc1f3f0a95fb62d832f414 100644
--- a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
+++ b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
@@ -54,7 +54,7 @@ namespace blink {
#ifdef AUTOSIZING_DOM_DEBUG_INFO
class WriteDebugInfoTask : public ExecutionContextTask {
public:
- WriteDebugInfoTask(PassRefPtrWillBeRawPtr<Element> element, AtomicString value)
+ WriteDebugInfoTask(RawPtr<Element> element, AtomicString value)
: m_element(element)
, m_value(value)
{
@@ -66,7 +66,7 @@ public:
}
private:
- RefPtrWillBePersistent<Element> m_element;
+ Persistent<Element> m_element;
AtomicString m_value;
};

Powered by Google App Engine
This is Rietveld 408576698