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

Unified Diff: third_party/WebKit/Source/core/editing/SelectionEditor.h

Issue 2612713002: Move core/editing timer to frame-specific task runners. (Closed)
Patch Set: Created 3 years, 12 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/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(); }
« no previous file with comments | « third_party/WebKit/Source/core/editing/FrameSelection.cpp ('k') | third_party/WebKit/Source/core/editing/SelectionEditor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698