| 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 <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 // RenderFrameHostDelegate --------------------------------------------------- | 302 // RenderFrameHostDelegate --------------------------------------------------- |
| 303 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, | 303 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, |
| 304 const IPC::Message& message) OVERRIDE; | 304 const IPC::Message& message) OVERRIDE; |
| 305 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; | 305 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; |
| 306 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; | 306 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; |
| 307 virtual void DidStartLoading(RenderFrameHost* render_frame_host) OVERRIDE; | 307 virtual void DidStartLoading(RenderFrameHost* render_frame_host) OVERRIDE; |
| 308 virtual void DidStopLoading(RenderFrameHost* render_frame_host) OVERRIDE; | 308 virtual void DidStopLoading(RenderFrameHost* render_frame_host) OVERRIDE; |
| 309 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; | 309 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; |
| 310 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, | 310 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, |
| 311 const ContextMenuParams& params) OVERRIDE; | 311 const ContextMenuParams& params) OVERRIDE; |
| 312 virtual void OnDomOperationResponse( |
| 313 const DomOperationNotificationDetails& details) OVERRIDE; |
| 312 virtual WebContents* GetAsWebContents() OVERRIDE; | 314 virtual WebContents* GetAsWebContents() OVERRIDE; |
| 313 | 315 |
| 314 // RenderViewHostDelegate ---------------------------------------------------- | 316 // RenderViewHostDelegate ---------------------------------------------------- |
| 315 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; | 317 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; |
| 316 virtual RenderViewHostDelegate::RendererManagement* | 318 virtual RenderViewHostDelegate::RendererManagement* |
| 317 GetRendererManagementDelegate() OVERRIDE; | 319 GetRendererManagementDelegate() OVERRIDE; |
| 318 virtual bool OnMessageReceived(RenderViewHost* render_view_host, | 320 virtual bool OnMessageReceived(RenderViewHost* render_view_host, |
| 319 const IPC::Message& message) OVERRIDE; | 321 const IPC::Message& message) OVERRIDE; |
| 320 virtual const GURL& GetURL() const OVERRIDE; | 322 virtual const GURL& GetURL() const OVERRIDE; |
| 321 virtual const GURL& GetVisibleURL() const OVERRIDE; | 323 virtual const GURL& GetVisibleURL() const OVERRIDE; |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 // Whether this WebContents is responsible for displaying a subframe in a | 1062 // Whether this WebContents is responsible for displaying a subframe in a |
| 1061 // different process from its parent page. | 1063 // different process from its parent page. |
| 1062 bool is_subframe_; | 1064 bool is_subframe_; |
| 1063 | 1065 |
| 1064 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1066 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1065 }; | 1067 }; |
| 1066 | 1068 |
| 1067 } // namespace content | 1069 } // namespace content |
| 1068 | 1070 |
| 1069 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1071 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |