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

Unified Diff: third_party/WebKit/Source/core/html/shadow/MeterShadowElement.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, 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/html/shadow/MeterShadowElement.h
diff --git a/third_party/WebKit/Source/core/html/shadow/MeterShadowElement.h b/third_party/WebKit/Source/core/html/shadow/MeterShadowElement.h
index 539816c7e7c2fefc293456b33547dcc85aa7780c..d80fb39364d14917db754d0c3aeedb8bf8593bab 100644
--- a/third_party/WebKit/Source/core/html/shadow/MeterShadowElement.h
+++ b/third_party/WebKit/Source/core/html/shadow/MeterShadowElement.h
@@ -49,7 +49,7 @@ private:
class MeterInnerElement final : public MeterShadowElement {
public:
- static PassRefPtrWillBeRawPtr<MeterInnerElement> create(Document&);
+ static RawPtr<MeterInnerElement> create(Document&);
private:
explicit MeterInnerElement(Document&);
@@ -62,12 +62,12 @@ private:
explicit MeterBarElement(Document&);
public:
- static PassRefPtrWillBeRawPtr<MeterBarElement> create(Document&);
+ static RawPtr<MeterBarElement> create(Document&);
};
class MeterValueElement final : public MeterShadowElement {
public:
- static PassRefPtrWillBeRawPtr<MeterValueElement> create(Document&);
+ static RawPtr<MeterValueElement> create(Document&);
void setWidthPercentage(double);
void updatePseudo() { setShadowPseudoId(valuePseudoId()); }

Powered by Google App Engine
This is Rietveld 408576698