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

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

Issue 505443002: Move DisownOpener to RenderFrameHost / RenderFrameProxyHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 void OnSetWebUIProperty(const std::string& name, const std::string& value); 726 void OnSetWebUIProperty(const std::string& name, const std::string& value);
727 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); 727 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level);
728 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); 728 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level);
729 void OnStopFinding(StopFindAction action); 729 void OnStopFinding(StopFindAction action);
730 void OnSuppressDialogsUntilSwapOut(); 730 void OnSuppressDialogsUntilSwapOut();
731 void OnThemeChanged(); 731 void OnThemeChanged();
732 void OnUpdateTargetURLAck(); 732 void OnUpdateTargetURLAck();
733 void OnUpdateWebPreferences(const WebPreferences& prefs); 733 void OnUpdateWebPreferences(const WebPreferences& prefs);
734 void OnZoom(PageZoom zoom); 734 void OnZoom(PageZoom zoom);
735 void OnEnableViewSourceMode(); 735 void OnEnableViewSourceMode();
736 void OnDisownOpener();
737 void OnWindowSnapshotCompleted(const int snapshot_id, 736 void OnWindowSnapshotCompleted(const int snapshot_id,
738 const gfx::Size& size, const std::vector<unsigned char>& png); 737 const gfx::Size& size, const std::vector<unsigned char>& png);
739 void OnForceRedraw(int request_id); 738 void OnForceRedraw(int request_id);
740 void OnSelectWordAroundCaret(); 739 void OnSelectWordAroundCaret();
741 #if defined(OS_ANDROID) 740 #if defined(OS_ANDROID)
742 void OnActivateNearestFindResult(int request_id, float x, float y); 741 void OnActivateNearestFindResult(int request_id, float x, float y);
743 void OnFindMatchRects(int current_version); 742 void OnFindMatchRects(int current_version);
744 void OnSelectPopupMenuItems(bool canceled, 743 void OnSelectPopupMenuItems(bool canceled,
745 const std::vector<int>& selected_indices); 744 const std::vector<int>& selected_indices);
746 void OnUndoScrollFocusedEditableNodeIntoRect(); 745 void OnUndoScrollFocusedEditableNodeIntoRect();
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 // use the Observer interface to filter IPC messages and receive frame change 1147 // use the Observer interface to filter IPC messages and receive frame change
1149 // notifications. 1148 // notifications.
1150 // --------------------------------------------------------------------------- 1149 // ---------------------------------------------------------------------------
1151 1150
1152 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1151 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1153 }; 1152 };
1154 1153
1155 } // namespace content 1154 } // namespace content
1156 1155
1157 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1156 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698