| OLD | NEW |
| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 #if defined(OS_MACOSX) | 856 #if defined(OS_MACOSX) |
| 857 void OnSetWindowVisibility(bool visible); | 857 void OnSetWindowVisibility(bool visible); |
| 858 #endif | 858 #endif |
| 859 void OnSetZoomLevel(double zoom_level); | 859 void OnSetZoomLevel(double zoom_level); |
| 860 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 860 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 861 void OnExitFullscreen(); | 861 void OnExitFullscreen(); |
| 862 void OnShouldClose(); | 862 void OnShouldClose(); |
| 863 void OnStop(); | 863 void OnStop(); |
| 864 void OnStopFinding(content::StopFindAction action); | 864 void OnStopFinding(content::StopFindAction action); |
| 865 void OnSwapOut(const ViewMsg_SwapOut_Params& params); | 865 void OnSwapOut(const ViewMsg_SwapOut_Params& params); |
| 866 void OnTextChecking(); |
| 866 void OnThemeChanged(); | 867 void OnThemeChanged(); |
| 867 void OnUndo(); | 868 void OnUndo(); |
| 868 void OnUpdateTargetURLAck(); | 869 void OnUpdateTargetURLAck(); |
| 869 void OnUpdateWebPreferences(const WebPreferences& prefs); | 870 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 870 | 871 |
| 871 #if defined(OS_MACOSX) | 872 #if defined(OS_MACOSX) |
| 872 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 873 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
| 873 const gfx::Rect& view_frame); | 874 const gfx::Rect& view_frame); |
| 874 void OnSelectPopupMenuItem(int selected_index); | 875 void OnSelectPopupMenuItem(int selected_index); |
| 875 #endif | 876 #endif |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 // bunch of stuff, you should probably create a helper class and put your | 1261 // bunch of stuff, you should probably create a helper class and put your |
| 1261 // data and methods on that to avoid bloating RenderView more. You can | 1262 // data and methods on that to avoid bloating RenderView more. You can |
| 1262 // use the Observer interface to filter IPC messages and receive frame change | 1263 // use the Observer interface to filter IPC messages and receive frame change |
| 1263 // notifications. | 1264 // notifications. |
| 1264 // --------------------------------------------------------------------------- | 1265 // --------------------------------------------------------------------------- |
| 1265 | 1266 |
| 1266 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1267 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1267 }; | 1268 }; |
| 1268 | 1269 |
| 1269 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1270 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |