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

Unified Diff: third_party/WebKit/Source/core/html/HTMLStyleElement.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/HTMLStyleElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLStyleElement.h b/third_party/WebKit/Source/core/html/HTMLStyleElement.h
index 6ceae7a2bcd33469358a83ea7f66e1c1da46e09b..9644c199c40b727c1014da8384db7673633f32b8 100644
--- a/third_party/WebKit/Source/core/html/HTMLStyleElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLStyleElement.h
@@ -35,9 +35,9 @@ using StyleEventSender = EventSender<HTMLStyleElement>;
class HTMLStyleElement final : public HTMLElement, private StyleElement {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLStyleElement);
+ USING_GARBAGE_COLLECTED_MIXIN(HTMLStyleElement);
public:
- static PassRefPtrWillBeRawPtr<HTMLStyleElement> create(Document&, bool createdByParser);
+ static RawPtr<HTMLStyleElement> create(Document&, bool createdByParser);
~HTMLStyleElement() override;
using StyleElement::sheet;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSourceElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLStyleElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698