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

Unified Diff: Source/core/events/ClipboardEvent.h

Issue 640303002: Enable Oilpan for core/clipboard/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove some slightly pointy edges Created 5 years, 8 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
« no previous file with comments | « Source/core/editing/Editor.cpp ('k') | Source/core/events/ClipboardEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ClipboardEvent.h
diff --git a/Source/core/events/ClipboardEvent.h b/Source/core/events/ClipboardEvent.h
index 8c4f0a46c255dd257003a2c2a89564c4e71b7625..76f7de2ac931df6e1d9257fb871d5d13c3d9fd3c 100644
--- a/Source/core/events/ClipboardEvent.h
+++ b/Source/core/events/ClipboardEvent.h
@@ -38,7 +38,7 @@ public:
return adoptRefWillBeNoop(new ClipboardEvent());
}
- static PassRefPtrWillBeRawPtr<ClipboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer)
+ static PassRefPtrWillBeRawPtr<ClipboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, DataTransfer* dataTransfer)
{
return adoptRefWillBeNoop(new ClipboardEvent(type, canBubble, cancelable, dataTransfer));
}
@@ -49,12 +49,12 @@ public:
private:
ClipboardEvent();
- ClipboardEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData);
+ ClipboardEvent(const AtomicString& type, bool canBubble, bool cancelable, DataTransfer* clipboardData);
virtual const AtomicString& interfaceName() const override;
virtual bool isClipboardEvent() const override;
- RefPtrWillBeMember<DataTransfer> m_clipboardData;
+ PersistentWillBeMember<DataTransfer> m_clipboardData;
};
} // namespace blink
« no previous file with comments | « Source/core/editing/Editor.cpp ('k') | Source/core/events/ClipboardEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698