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

Unified Diff: third_party/WebKit/Source/core/html/PluginDocument.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/PluginDocument.h
diff --git a/third_party/WebKit/Source/core/html/PluginDocument.h b/third_party/WebKit/Source/core/html/PluginDocument.h
index 174d0007b61dc5347500371ea435454d31f4d6cd..5deb9dcbc2e9d647b649b7e8689414b5a1178d29 100644
--- a/third_party/WebKit/Source/core/html/PluginDocument.h
+++ b/third_party/WebKit/Source/core/html/PluginDocument.h
@@ -35,9 +35,9 @@ class Widget;
class CORE_EXPORT PluginDocument final : public HTMLDocument {
public:
- static PassRefPtrWillBeRawPtr<PluginDocument> create(const DocumentInit& initializer = DocumentInit())
+ static RawPtr<PluginDocument> create(const DocumentInit& initializer = DocumentInit())
{
- return adoptRefWillBeNoop(new PluginDocument(initializer));
+ return new PluginDocument(initializer);
}
void setPluginNode(Node* pluginNode) { m_pluginNode = pluginNode; }
@@ -52,9 +52,9 @@ public:
private:
explicit PluginDocument(const DocumentInit&);
- PassRefPtrWillBeRawPtr<DocumentParser> createParser() override;
+ RawPtr<DocumentParser> createParser() override;
- RefPtrWillBeMember<Node> m_pluginNode;
+ Member<Node> m_pluginNode;
};
DEFINE_DOCUMENT_TYPE_CASTS(PluginDocument);
« no previous file with comments | « third_party/WebKit/Source/core/html/MediaDocument.cpp ('k') | third_party/WebKit/Source/core/html/PluginDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698