| 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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; | 315 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; |
| 316 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE; | 316 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE; |
| 317 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; | 317 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; |
| 318 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE; | 318 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE; |
| 319 virtual void DidStartLoading( | 319 virtual void DidStartLoading( |
| 320 content::RenderViewHost* render_view_host) OVERRIDE; | 320 content::RenderViewHost* render_view_host) OVERRIDE; |
| 321 virtual void DidStopLoading( | 321 virtual void DidStopLoading( |
| 322 content::RenderViewHost* render_view_host) OVERRIDE; | 322 content::RenderViewHost* render_view_host) OVERRIDE; |
| 323 virtual void DidCancelLoading() OVERRIDE; | 323 virtual void DidCancelLoading() OVERRIDE; |
| 324 virtual void DidChangeLoadProgress(double progress) OVERRIDE; | 324 virtual void DidChangeLoadProgress(double progress) OVERRIDE; |
| 325 virtual void DidUpdateFrameTree(content::RenderViewHost* rvh) OVERRIDE; |
| 325 virtual void DocumentAvailableInMainFrame( | 326 virtual void DocumentAvailableInMainFrame( |
| 326 content::RenderViewHost* render_view_host) OVERRIDE; | 327 content::RenderViewHost* render_view_host) OVERRIDE; |
| 327 virtual void DocumentOnLoadCompletedInMainFrame( | 328 virtual void DocumentOnLoadCompletedInMainFrame( |
| 328 content::RenderViewHost* render_view_host, | 329 content::RenderViewHost* render_view_host, |
| 329 int32 page_id) OVERRIDE; | 330 int32 page_id) OVERRIDE; |
| 330 virtual void RequestOpenURL(content::RenderViewHost* rvh, | 331 virtual void RequestOpenURL(content::RenderViewHost* rvh, |
| 331 const GURL& url, | 332 const GURL& url, |
| 332 const content::Referrer& referrer, | 333 const content::Referrer& referrer, |
| 333 WindowOpenDisposition disposition, | 334 WindowOpenDisposition disposition, |
| 334 int64 source_frame_id) OVERRIDE; | 335 int64 source_frame_id) OVERRIDE; |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 content::NotificationRegistrar registrar_; | 818 content::NotificationRegistrar registrar_; |
| 818 | 819 |
| 819 // Used during IPC message dispatching so that the handlers can get a pointer | 820 // Used during IPC message dispatching so that the handlers can get a pointer |
| 820 // to the RVH through which the message was received. | 821 // to the RVH through which the message was received. |
| 821 content::RenderViewHost* message_source_; | 822 content::RenderViewHost* message_source_; |
| 822 | 823 |
| 823 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 824 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 824 }; | 825 }; |
| 825 | 826 |
| 826 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 827 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |