Index: third_party/WebKit/Source/core/editing/SelectionEditor.h |
diff --git a/third_party/WebKit/Source/core/editing/SelectionEditor.h b/third_party/WebKit/Source/core/editing/SelectionEditor.h |
index cf995764d450babdc18cb01ca4c99a80b3176240..cd1e2dafb5194f76847e1f55e337c58bd9b3b2e2 100644 |
--- a/third_party/WebKit/Source/core/editing/SelectionEditor.h |
+++ b/third_party/WebKit/Source/core/editing/SelectionEditor.h |
@@ -40,7 +40,7 @@ class SelectionEditor final |
WTF_MAKE_NONCOPYABLE(SelectionEditor); |
public: |
- static SelectionEditor* create(LocalFrame* frame) { |
+ static SelectionEditor* create(LocalFrame& frame) { |
return new SelectionEditor(frame); |
} |
virtual ~SelectionEditor(); |
@@ -85,7 +85,7 @@ class SelectionEditor final |
DECLARE_TRACE(); |
private: |
- explicit SelectionEditor(LocalFrame*); |
+ explicit SelectionEditor(LocalFrame&); |
const Document& document() const; |
LocalFrame* frame() const { return m_frame.get(); } |