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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 183923030: Almost finish moving context_menu_node_ from RenderViewImpl to RenderFrameImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 bool SendAndRunNestedMessageLoop(IPC::SyncMessage* message); 834 bool SendAndRunNestedMessageLoop(IPC::SyncMessage* message);
835 835
836 // Called when the "pinned to left/right edge" state needs to be updated. 836 // Called when the "pinned to left/right edge" state needs to be updated.
837 void UpdateScrollState(blink::WebFrame* frame); 837 void UpdateScrollState(blink::WebFrame* frame);
838 838
839 // IPC message handlers ------------------------------------------------------ 839 // IPC message handlers ------------------------------------------------------
840 // 840 //
841 // The documentation for these functions should be in 841 // The documentation for these functions should be in
842 // content/common/*_messages.h for the message that the function is handling. 842 // content/common/*_messages.h for the message that the function is handling.
843 843
844 void OnCopy();
845 void OnCut();
846 void OnDelete(); 844 void OnDelete();
847 void OnExecuteEditCommand(const std::string& name, const std::string& value); 845 void OnExecuteEditCommand(const std::string& name, const std::string& value);
848 void OnMoveCaret(const gfx::Point& point); 846 void OnMoveCaret(const gfx::Point& point);
849 void OnPaste();
850 void OnPasteAndMatchStyle(); 847 void OnPasteAndMatchStyle();
851 void OnRedo(); 848 void OnRedo();
852 void OnReplace(const base::string16& text); 849 void OnReplace(const base::string16& text);
853 void OnReplaceMisspelling(const base::string16& text); 850 void OnReplaceMisspelling(const base::string16& text);
854 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); 851 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect);
855 void OnSelectAll(); 852 void OnSelectAll();
856 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); 853 void OnSelectRange(const gfx::Point& start, const gfx::Point& end);
857 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); 854 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands);
858 void OnUndo(); 855 void OnUndo();
859 void OnUnselect(); 856 void OnUnselect();
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
1446 // use the Observer interface to filter IPC messages and receive frame change 1443 // use the Observer interface to filter IPC messages and receive frame change
1447 // notifications. 1444 // notifications.
1448 // --------------------------------------------------------------------------- 1445 // ---------------------------------------------------------------------------
1449 1446
1450 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1447 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1451 }; 1448 };
1452 1449
1453 } // namespace content 1450 } // namespace content
1454 1451
1455 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1452 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698