| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 void OnReservePageIDRange(int size_of_range); | 715 void OnReservePageIDRange(int size_of_range); |
| 716 | 716 |
| 717 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 717 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
| 718 const gfx::Point& screen_point, | 718 const gfx::Point& screen_point, |
| 719 bool ended, | 719 bool ended, |
| 720 WebKit::WebDragOperation drag_operation); | 720 WebKit::WebDragOperation drag_operation); |
| 721 void OnDragSourceSystemDragEnded(); | 721 void OnDragSourceSystemDragEnded(); |
| 722 void OnInstallMissingPlugin(); | 722 void OnInstallMissingPlugin(); |
| 723 void OnFileChooserResponse(const std::vector<FilePath>& paths); | 723 void OnFileChooserResponse(const std::vector<FilePath>& paths); |
| 724 void OnEnableViewSourceMode(); | 724 void OnEnableViewSourceMode(); |
| 725 void OnEnablePreferredSizeChangedMode(); | 725 void OnEnablePreferredSizeChangedMode(int flags); |
| 726 void OnDisableScrollbarsForSmallWindows( | 726 void OnDisableScrollbarsForSmallWindows( |
| 727 const gfx::Size& disable_scrollbars_size_limit); | 727 const gfx::Size& disable_scrollbars_size_limit); |
| 728 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 728 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 729 void OnMediaPlayerActionAt(const gfx::Point& location, | 729 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 730 const WebKit::WebMediaPlayerAction& action); | 730 const WebKit::WebMediaPlayerAction& action); |
| 731 void OnNotifyRendererViewType(ViewType::Type view_type); | 731 void OnNotifyRendererViewType(ViewType::Type view_type); |
| 732 void OnUpdateBrowserWindowId(int window_id); | 732 void OnUpdateBrowserWindowId(int window_id); |
| 733 void OnExecuteCode(const ViewMsg_ExecuteCode_Params& params); | 733 void OnExecuteCode(const ViewMsg_ExecuteCode_Params& params); |
| 734 void ExecuteCodeImpl(WebKit::WebFrame* frame, | 734 void ExecuteCodeImpl(WebKit::WebFrame* frame, |
| 735 const ViewMsg_ExecuteCode_Params& params); | 735 const ViewMsg_ExecuteCode_Params& params); |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 // in OnClosePage. | 1217 // in OnClosePage. |
| 1218 int cross_origin_access_count_; | 1218 int cross_origin_access_count_; |
| 1219 int same_origin_access_count_; | 1219 int same_origin_access_count_; |
| 1220 | 1220 |
| 1221 PepperPluginDelegateImpl pepper_delegate_; | 1221 PepperPluginDelegateImpl pepper_delegate_; |
| 1222 | 1222 |
| 1223 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1223 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1224 }; | 1224 }; |
| 1225 | 1225 |
| 1226 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1226 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |