| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; | 318 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; |
| 319 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE; | 319 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE; |
| 320 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; | 320 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; |
| 321 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE; | 321 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE; |
| 322 virtual void DidStartLoading( | 322 virtual void DidStartLoading( |
| 323 content::RenderViewHost* render_view_host) OVERRIDE; | 323 content::RenderViewHost* render_view_host) OVERRIDE; |
| 324 virtual void DidStopLoading( | 324 virtual void DidStopLoading( |
| 325 content::RenderViewHost* render_view_host) OVERRIDE; | 325 content::RenderViewHost* render_view_host) OVERRIDE; |
| 326 virtual void DidCancelLoading() OVERRIDE; | 326 virtual void DidCancelLoading() OVERRIDE; |
| 327 virtual void DidChangeLoadProgress(double progress) OVERRIDE; | 327 virtual void DidChangeLoadProgress(double progress) OVERRIDE; |
| 328 virtual void DidUpdateFrameTree(content::RenderViewHost* rvh) OVERRIDE; |
| 328 virtual void DocumentAvailableInMainFrame( | 329 virtual void DocumentAvailableInMainFrame( |
| 329 content::RenderViewHost* render_view_host) OVERRIDE; | 330 content::RenderViewHost* render_view_host) OVERRIDE; |
| 330 virtual void DocumentOnLoadCompletedInMainFrame( | 331 virtual void DocumentOnLoadCompletedInMainFrame( |
| 331 content::RenderViewHost* render_view_host, | 332 content::RenderViewHost* render_view_host, |
| 332 int32 page_id) OVERRIDE; | 333 int32 page_id) OVERRIDE; |
| 333 virtual void RequestOpenURL(content::RenderViewHost* rvh, | 334 virtual void RequestOpenURL(content::RenderViewHost* rvh, |
| 334 const GURL& url, | 335 const GURL& url, |
| 335 const content::Referrer& referrer, | 336 const content::Referrer& referrer, |
| 336 WindowOpenDisposition disposition, | 337 WindowOpenDisposition disposition, |
| 337 int64 source_frame_id) OVERRIDE; | 338 int64 source_frame_id) OVERRIDE; |
| (...skipping 479 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 |