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

Unified Diff: third_party/WebKit/Source/core/events/SecurityPolicyViolationEvent.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/events/SecurityPolicyViolationEvent.h
diff --git a/third_party/WebKit/Source/core/events/SecurityPolicyViolationEvent.h b/third_party/WebKit/Source/core/events/SecurityPolicyViolationEvent.h
index 4c42813efa435a4f47bfda9fdbca5c0a0c216a85..f1d151c0dc7aa8ea24483d5c44466a151db15a2d 100644
--- a/third_party/WebKit/Source/core/events/SecurityPolicyViolationEvent.h
+++ b/third_party/WebKit/Source/core/events/SecurityPolicyViolationEvent.h
@@ -33,14 +33,14 @@ namespace blink {
class SecurityPolicyViolationEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<SecurityPolicyViolationEvent> create()
+ static RawPtr<SecurityPolicyViolationEvent> create()
{
- return adoptRefWillBeNoop(new SecurityPolicyViolationEvent());
+ return new SecurityPolicyViolationEvent();
}
- static PassRefPtrWillBeRawPtr<SecurityPolicyViolationEvent> create(const AtomicString& type, const SecurityPolicyViolationEventInit& initializer)
+ static RawPtr<SecurityPolicyViolationEvent> create(const AtomicString& type, const SecurityPolicyViolationEventInit& initializer)
{
- return adoptRefWillBeNoop(new SecurityPolicyViolationEvent(type, initializer));
+ return new SecurityPolicyViolationEvent(type, initializer);
}
const String& documentURI() const { return m_documentURI; }
« no previous file with comments | « third_party/WebKit/Source/core/events/ScopedEventQueue.cpp ('k') | third_party/WebKit/Source/core/events/TextEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698