| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 const std::string& css, | 819 const std::string& css, |
| 820 const std::string& id); | 820 const std::string& id); |
| 821 void OnCustomContextMenuAction( | 821 void OnCustomContextMenuAction( |
| 822 const webkit_glue::CustomContextMenuContext& custom_context, | 822 const webkit_glue::CustomContextMenuContext& custom_context, |
| 823 unsigned action); | 823 unsigned action); |
| 824 void OnDelete(); | 824 void OnDelete(); |
| 825 void OnDeterminePageLanguage(); | 825 void OnDeterminePageLanguage(); |
| 826 void OnDisableScrollbarsForSmallWindows( | 826 void OnDisableScrollbarsForSmallWindows( |
| 827 const gfx::Size& disable_scrollbars_size_limit); | 827 const gfx::Size& disable_scrollbars_size_limit); |
| 828 void OnDisassociateFromPopupCount(); | 828 void OnDisassociateFromPopupCount(); |
| 829 void OnDownloadFavIcon(int id, const GURL& image_url, int image_size); | 829 void OnDownloadFavicon(int id, const GURL& image_url, int image_size); |
| 830 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 830 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
| 831 const gfx::Point& screen_point, | 831 const gfx::Point& screen_point, |
| 832 bool ended, | 832 bool ended, |
| 833 WebKit::WebDragOperation drag_operation); | 833 WebKit::WebDragOperation drag_operation); |
| 834 void OnDragSourceSystemDragEnded(); | 834 void OnDragSourceSystemDragEnded(); |
| 835 void OnDragTargetDrop(const gfx::Point& client_pt, | 835 void OnDragTargetDrop(const gfx::Point& client_pt, |
| 836 const gfx::Point& screen_pt); | 836 const gfx::Point& screen_pt); |
| 837 void OnDragTargetDragEnter(const WebDropData& drop_data, | 837 void OnDragTargetDragEnter(const WebDropData& drop_data, |
| 838 const gfx::Point& client_pt, | 838 const gfx::Point& client_pt, |
| 839 const gfx::Point& screen_pt, | 839 const gfx::Point& screen_pt, |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1435 // bunch of stuff, you should probably create a helper class and put your | 1435 // bunch of stuff, you should probably create a helper class and put your |
| 1436 // data and methods on that to avoid bloating RenderView more. You can use | 1436 // data and methods on that to avoid bloating RenderView more. You can use |
| 1437 // the Observer interface to filter IPC messages and receive frame change | 1437 // the Observer interface to filter IPC messages and receive frame change |
| 1438 // notifications. | 1438 // notifications. |
| 1439 // --------------------------------------------------------------------------- | 1439 // --------------------------------------------------------------------------- |
| 1440 | 1440 |
| 1441 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1441 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1442 }; | 1442 }; |
| 1443 | 1443 |
| 1444 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1444 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |