| 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 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 | 646 |
| 647 // Old WebFrameClient implementations ---------------------------------------- | 647 // Old WebFrameClient implementations ---------------------------------------- |
| 648 | 648 |
| 649 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the | 649 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the |
| 650 // WebFrameClient. However, many implementations of WebFrameClient methods | 650 // WebFrameClient. However, many implementations of WebFrameClient methods |
| 651 // still live here and are called from RenderFrameImpl. These implementations | 651 // still live here and are called from RenderFrameImpl. These implementations |
| 652 // are to be moved to RenderFrameImpl <http://crbug.com/361761>. | 652 // are to be moved to RenderFrameImpl <http://crbug.com/361761>. |
| 653 | 653 |
| 654 void didCreateDataSource(blink::WebLocalFrame* frame, | 654 void didCreateDataSource(blink::WebLocalFrame* frame, |
| 655 blink::WebDataSource* datasource); | 655 blink::WebDataSource* datasource); |
| 656 void didClearWindowObject(blink::WebLocalFrame* frame, int world_id); | 656 void didClearWindowObject(blink::WebLocalFrame* frame); |
| 657 void didReceiveTitle(blink::WebLocalFrame* frame, | 657 void didReceiveTitle(blink::WebLocalFrame* frame, |
| 658 const blink::WebString& title, | 658 const blink::WebString& title, |
| 659 blink::WebTextDirection direction); | 659 blink::WebTextDirection direction); |
| 660 void didChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); | 660 void didChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); |
| 661 void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); | 661 void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); |
| 662 void didChangeScrollOffset(blink::WebLocalFrame* frame); | 662 void didChangeScrollOffset(blink::WebLocalFrame* frame); |
| 663 bool willCheckAndDispatchMessageEvent( | 663 bool willCheckAndDispatchMessageEvent( |
| 664 blink::WebLocalFrame* sourceFrame, | 664 blink::WebLocalFrame* sourceFrame, |
| 665 blink::WebFrame* targetFrame, | 665 blink::WebFrame* targetFrame, |
| 666 blink::WebSecurityOrigin targetOrigin, | 666 blink::WebSecurityOrigin targetOrigin, |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1239 // use the Observer interface to filter IPC messages and receive frame change | 1239 // use the Observer interface to filter IPC messages and receive frame change |
| 1240 // notifications. | 1240 // notifications. |
| 1241 // --------------------------------------------------------------------------- | 1241 // --------------------------------------------------------------------------- |
| 1242 | 1242 |
| 1243 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1243 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1244 }; | 1244 }; |
| 1245 | 1245 |
| 1246 } // namespace content | 1246 } // namespace content |
| 1247 | 1247 |
| 1248 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1248 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |