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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableElement.h

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, 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/html/HTMLTableElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.h b/third_party/WebKit/Source/core/html/HTMLTableElement.h
index 4c0c9ed78c4b6335ec1d2d7eb2f77ae75fbaa083..cb72a350567f51db36b8fb9dd052b29bbaaf7b82 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLTableElement.h
@@ -43,26 +43,26 @@ public:
DECLARE_NODE_FACTORY(HTMLTableElement);
HTMLTableCaptionElement* caption() const;
- void setCaption(PassRefPtrWillBeRawPtr<HTMLTableCaptionElement>, ExceptionState&);
+ void setCaption(RawPtr<HTMLTableCaptionElement>, ExceptionState&);
HTMLTableSectionElement* tHead() const;
- void setTHead(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionState&);
+ void setTHead(RawPtr<HTMLTableSectionElement>, ExceptionState&);
HTMLTableSectionElement* tFoot() const;
- void setTFoot(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionState&);
+ void setTFoot(RawPtr<HTMLTableSectionElement>, ExceptionState&);
- PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTHead();
+ RawPtr<HTMLTableSectionElement> createTHead();
void deleteTHead();
- PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTFoot();
+ RawPtr<HTMLTableSectionElement> createTFoot();
void deleteTFoot();
- PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTBody();
- PassRefPtrWillBeRawPtr<HTMLTableCaptionElement> createCaption();
+ RawPtr<HTMLTableSectionElement> createTBody();
+ RawPtr<HTMLTableCaptionElement> createCaption();
void deleteCaption();
- PassRefPtrWillBeRawPtr<HTMLTableRowElement> insertRow(int index, ExceptionState&);
+ RawPtr<HTMLTableRowElement> insertRow(int index, ExceptionState&);
void deleteRow(int index, ExceptionState&);
- PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> rows();
- PassRefPtrWillBeRawPtr<HTMLCollection> tBodies();
+ RawPtr<HTMLTableRowsCollection> rows();
+ RawPtr<HTMLCollection> tBodies();
const AtomicString& rules() const;
const AtomicString& summary() const;
@@ -91,7 +91,7 @@ private:
CellBorders getCellBorders() const;
- PassRefPtrWillBeRawPtr<StylePropertySet> createSharedCellStyle();
+ RawPtr<StylePropertySet> createSharedCellStyle();
HTMLTableSectionElement* lastBody() const;
@@ -104,7 +104,7 @@ private:
// are present, to none otherwise).
unsigned short m_padding;
- RefPtrWillBeMember<StylePropertySet> m_sharedCellStyle;
+ Member<StylePropertySet> m_sharedCellStyle;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698