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

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

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/LayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
index 985b2d01d415224838adc50e7414dd88282513a8..9489e02b4b1e4d5eb5c3f0ada77154d513cc90e7 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
@@ -826,7 +826,7 @@ static void writeCounterValuesFromChildren(TextStream& stream, LayoutObject* par
String counterValueForElement(Element* element)
{
// Make sure the element is not freed during the layout.
- RefPtrWillBeRawPtr<Element> protector(element);
+ RawPtr<Element> protector(element);
element->document().updateLayout();
TextStream stream;
bool isFirstCounter = true;
@@ -841,7 +841,7 @@ String counterValueForElement(Element* element)
String markerTextForListItem(Element* element)
{
// Make sure the element is not freed during the layout.
- RefPtrWillBeRawPtr<Element> protector(element);
+ RawPtr<Element> protector(element);
element->document().updateLayout();
LayoutObject* layoutObject = element->layoutObject();
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutThemeTest.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698