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

Unified Diff: third_party/WebKit/Source/core/html/shadow/TextControlInnerElements.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/shadow/TextControlInnerElements.h
diff --git a/third_party/WebKit/Source/core/html/shadow/TextControlInnerElements.h b/third_party/WebKit/Source/core/html/shadow/TextControlInnerElements.h
index 62730c92b534dc34f53b9d9770b2a0cc5eb447d3..26fd342687a083741bb80f93e1d6e5a5a588057e 100644
--- a/third_party/WebKit/Source/core/html/shadow/TextControlInnerElements.h
+++ b/third_party/WebKit/Source/core/html/shadow/TextControlInnerElements.h
@@ -34,7 +34,7 @@ namespace blink {
class TextControlInnerContainer final : public HTMLDivElement {
public:
- static PassRefPtrWillBeRawPtr<TextControlInnerContainer> create(Document&);
+ static RawPtr<TextControlInnerContainer> create(Document&);
protected:
explicit TextControlInnerContainer(Document&);
@@ -43,7 +43,7 @@ protected:
class EditingViewPortElement final : public HTMLDivElement {
public:
- static PassRefPtrWillBeRawPtr<EditingViewPortElement> create(Document&);
+ static RawPtr<EditingViewPortElement> create(Document&);
protected:
explicit EditingViewPortElement(Document&);
@@ -55,7 +55,7 @@ private:
class TextControlInnerEditorElement final : public HTMLDivElement {
public:
- static PassRefPtrWillBeRawPtr<TextControlInnerEditorElement> create(Document&);
+ static RawPtr<TextControlInnerEditorElement> create(Document&);
void defaultEventHandler(Event*) override;
@@ -68,7 +68,7 @@ private:
class SearchFieldDecorationElement final : public HTMLDivElement {
public:
- static PassRefPtrWillBeRawPtr<SearchFieldDecorationElement> create(Document&);
+ static RawPtr<SearchFieldDecorationElement> create(Document&);
void defaultEventHandler(Event*) override;
bool willRespondToMouseClickEvents() override;
@@ -81,7 +81,7 @@ private:
class SearchFieldCancelButtonElement final : public HTMLDivElement {
public:
- static PassRefPtrWillBeRawPtr<SearchFieldCancelButtonElement> create(Document&);
+ static RawPtr<SearchFieldCancelButtonElement> create(Document&);
void defaultEventHandler(Event*) override;
bool willRespondToMouseClickEvents() override;

Powered by Google App Engine
This is Rietveld 408576698