| 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 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 void OnCSSInsertRequest(const string16& frame_xpath, | 885 void OnCSSInsertRequest(const string16& frame_xpath, |
| 886 const std::string& css); | 886 const std::string& css); |
| 887 void OnCustomContextMenuAction( | 887 void OnCustomContextMenuAction( |
| 888 const content::CustomContextMenuContext& custom_context, | 888 const content::CustomContextMenuContext& custom_context, |
| 889 unsigned action); | 889 unsigned action); |
| 890 void OnDelete(); | 890 void OnDelete(); |
| 891 void OnDeterminePageLanguage(); | 891 void OnDeterminePageLanguage(); |
| 892 void OnDisableScrollbarsForSmallWindows( | 892 void OnDisableScrollbarsForSmallWindows( |
| 893 const gfx::Size& disable_scrollbars_size_limit); | 893 const gfx::Size& disable_scrollbars_size_limit); |
| 894 void OnDisassociateFromPopupCount(); | 894 void OnDisassociateFromPopupCount(); |
| 895 void OnDocumentHasImagesRequest(int id); |
| 895 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 896 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
| 896 const gfx::Point& screen_point, | 897 const gfx::Point& screen_point, |
| 897 bool ended, | 898 bool ended, |
| 898 WebKit::WebDragOperation drag_operation); | 899 WebKit::WebDragOperation drag_operation); |
| 899 void OnDragSourceSystemDragEnded(); | 900 void OnDragSourceSystemDragEnded(); |
| 900 void OnDragTargetDrop(const gfx::Point& client_pt, | 901 void OnDragTargetDrop(const gfx::Point& client_pt, |
| 901 const gfx::Point& screen_pt, | 902 const gfx::Point& screen_pt, |
| 902 int key_modifiers); | 903 int key_modifiers); |
| 903 void OnDragTargetDragEnter(const WebDropData& drop_data, | 904 void OnDragTargetDragEnter(const WebDropData& drop_data, |
| 904 const gfx::Point& client_pt, | 905 const gfx::Point& client_pt, |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 // bunch of stuff, you should probably create a helper class and put your | 1440 // bunch of stuff, you should probably create a helper class and put your |
| 1440 // data and methods on that to avoid bloating RenderView more. You can | 1441 // data and methods on that to avoid bloating RenderView more. You can |
| 1441 // use the Observer interface to filter IPC messages and receive frame change | 1442 // use the Observer interface to filter IPC messages and receive frame change |
| 1442 // notifications. | 1443 // notifications. |
| 1443 // --------------------------------------------------------------------------- | 1444 // --------------------------------------------------------------------------- |
| 1444 | 1445 |
| 1445 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1446 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1446 }; | 1447 }; |
| 1447 | 1448 |
| 1448 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1449 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |