| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 CONNECTION_ERROR, | 678 CONNECTION_ERROR, |
| 679 }; | 679 }; |
| 680 | 680 |
| 681 // Old WebFrameClient implementations ---------------------------------------- | 681 // Old WebFrameClient implementations ---------------------------------------- |
| 682 | 682 |
| 683 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the | 683 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the |
| 684 // WebFrameClient. However, many implementations of WebFrameClient methods | 684 // WebFrameClient. However, many implementations of WebFrameClient methods |
| 685 // still live here and are called from RenderFrameImpl. These implementations | 685 // still live here and are called from RenderFrameImpl. These implementations |
| 686 // are to be moved to RenderFrameImpl <http://crbug.com/361761>. | 686 // are to be moved to RenderFrameImpl <http://crbug.com/361761>. |
| 687 | 687 |
| 688 void didAccessInitialDocument(blink::WebLocalFrame* frame); | |
| 689 void didDisownOpener(blink::WebLocalFrame* frame); | 688 void didDisownOpener(blink::WebLocalFrame* frame); |
| 690 void didCreateDataSource(blink::WebLocalFrame* frame, | 689 void didCreateDataSource(blink::WebLocalFrame* frame, |
| 691 blink::WebDataSource* datasource); | 690 blink::WebDataSource* datasource); |
| 692 void didClearWindowObject(blink::WebLocalFrame* frame, int world_id); | 691 void didClearWindowObject(blink::WebLocalFrame* frame, int world_id); |
| 693 void didReceiveTitle(blink::WebLocalFrame* frame, | 692 void didReceiveTitle(blink::WebLocalFrame* frame, |
| 694 const blink::WebString& title, | 693 const blink::WebString& title, |
| 695 blink::WebTextDirection direction); | 694 blink::WebTextDirection direction); |
| 696 void didChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); | 695 void didChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); |
| 697 void didHandleOnloadEvents(blink::WebLocalFrame* frame); | 696 void didHandleOnloadEvents(blink::WebLocalFrame* frame); |
| 698 void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); | 697 void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1312 // use the Observer interface to filter IPC messages and receive frame change | 1311 // use the Observer interface to filter IPC messages and receive frame change |
| 1313 // notifications. | 1312 // notifications. |
| 1314 // --------------------------------------------------------------------------- | 1313 // --------------------------------------------------------------------------- |
| 1315 | 1314 |
| 1316 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1315 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1317 }; | 1316 }; |
| 1318 | 1317 |
| 1319 } // namespace content | 1318 } // namespace content |
| 1320 | 1319 |
| 1321 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1320 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |