| 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 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 void OnCSSInsertRequest(const string16& frame_xpath, | 891 void OnCSSInsertRequest(const string16& frame_xpath, |
| 892 const std::string& css); | 892 const std::string& css); |
| 893 void OnCustomContextMenuAction( | 893 void OnCustomContextMenuAction( |
| 894 const content::CustomContextMenuContext& custom_context, | 894 const content::CustomContextMenuContext& custom_context, |
| 895 unsigned action); | 895 unsigned action); |
| 896 void OnDelete(); | 896 void OnDelete(); |
| 897 void OnDeterminePageLanguage(); | 897 void OnDeterminePageLanguage(); |
| 898 void OnDisableScrollbarsForSmallWindows( | 898 void OnDisableScrollbarsForSmallWindows( |
| 899 const gfx::Size& disable_scrollbars_size_limit); | 899 const gfx::Size& disable_scrollbars_size_limit); |
| 900 void OnDisassociateFromPopupCount(); | 900 void OnDisassociateFromPopupCount(); |
| 901 void OnDocumentHasImagesRequest(int id); |
| 901 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 902 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
| 902 const gfx::Point& screen_point, | 903 const gfx::Point& screen_point, |
| 903 bool ended, | 904 bool ended, |
| 904 WebKit::WebDragOperation drag_operation); | 905 WebKit::WebDragOperation drag_operation); |
| 905 void OnDragSourceSystemDragEnded(); | 906 void OnDragSourceSystemDragEnded(); |
| 906 void OnDragTargetDrop(const gfx::Point& client_pt, | 907 void OnDragTargetDrop(const gfx::Point& client_pt, |
| 907 const gfx::Point& screen_pt, | 908 const gfx::Point& screen_pt, |
| 908 int key_modifiers); | 909 int key_modifiers); |
| 909 void OnDragTargetDragEnter(const WebDropData& drop_data, | 910 void OnDragTargetDragEnter(const WebDropData& drop_data, |
| 910 const gfx::Point& client_pt, | 911 const gfx::Point& client_pt, |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1431 // bunch of stuff, you should probably create a helper class and put your | 1432 // bunch of stuff, you should probably create a helper class and put your |
| 1432 // data and methods on that to avoid bloating RenderView more. You can | 1433 // data and methods on that to avoid bloating RenderView more. You can |
| 1433 // use the Observer interface to filter IPC messages and receive frame change | 1434 // use the Observer interface to filter IPC messages and receive frame change |
| 1434 // notifications. | 1435 // notifications. |
| 1435 // --------------------------------------------------------------------------- | 1436 // --------------------------------------------------------------------------- |
| 1436 | 1437 |
| 1437 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1438 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1438 }; | 1439 }; |
| 1439 | 1440 |
| 1440 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |