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

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/VTTElement.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/track/vtt/VTTElement.h
diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTElement.h b/third_party/WebKit/Source/core/html/track/vtt/VTTElement.h
index d8ecd086a07317478908f4241b851f099057d795..bf1a123f323dd05c442527224365a88dc6925781 100644
--- a/third_party/WebKit/Source/core/html/track/vtt/VTTElement.h
+++ b/third_party/WebKit/Source/core/html/track/vtt/VTTElement.h
@@ -44,11 +44,11 @@ enum VTTNodeType {
class VTTElement final : public Element {
public:
- static PassRefPtrWillBeRawPtr<VTTElement> create(const VTTNodeType, Document*);
- static PassRefPtrWillBeRawPtr<VTTElement> create(const QualifiedName&, Document*);
- PassRefPtrWillBeRawPtr<HTMLElement> createEquivalentHTMLElement(Document&);
+ static RawPtr<VTTElement> create(const VTTNodeType, Document*);
+ static RawPtr<VTTElement> create(const QualifiedName&, Document*);
+ RawPtr<HTMLElement> createEquivalentHTMLElement(Document&);
- PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
+ RawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
void setVTTNodeType(VTTNodeType type) { m_webVTTNodeType = static_cast<unsigned>(type); }
VTTNodeType webVTTNodeType() const { return static_cast<VTTNodeType>(m_webVTTNodeType); }
« no previous file with comments | « third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp ('k') | third_party/WebKit/Source/core/html/track/vtt/VTTElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698