| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 virtual bool Send(IPC::Message* message) OVERRIDE; | 300 virtual bool Send(IPC::Message* message) OVERRIDE; |
| 301 | 301 |
| 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 WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; | 307 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; |
| 308 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, | 308 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, |
| 309 const ContextMenuParams& params) OVERRIDE; | 309 const ContextMenuParams& params) OVERRIDE; |
| 310 virtual void OnDomOperationResponse( |
| 311 const DomOperationNotificationDetails& details) OVERRIDE; |
| 310 virtual WebContents* GetAsWebContents() OVERRIDE; | 312 virtual WebContents* GetAsWebContents() OVERRIDE; |
| 311 | 313 |
| 312 // RenderViewHostDelegate ---------------------------------------------------- | 314 // RenderViewHostDelegate ---------------------------------------------------- |
| 313 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; | 315 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; |
| 314 virtual RenderViewHostDelegate::RendererManagement* | 316 virtual RenderViewHostDelegate::RendererManagement* |
| 315 GetRendererManagementDelegate() OVERRIDE; | 317 GetRendererManagementDelegate() OVERRIDE; |
| 316 virtual bool OnMessageReceived(RenderViewHost* render_view_host, | 318 virtual bool OnMessageReceived(RenderViewHost* render_view_host, |
| 317 const IPC::Message& message) OVERRIDE; | 319 const IPC::Message& message) OVERRIDE; |
| 318 virtual const GURL& GetURL() const OVERRIDE; | 320 virtual const GURL& GetURL() const OVERRIDE; |
| 319 virtual const GURL& GetVisibleURL() const OVERRIDE; | 321 virtual const GURL& GetVisibleURL() const OVERRIDE; |
| (...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 // Whether this WebContents is responsible for displaying a subframe in a | 1058 // Whether this WebContents is responsible for displaying a subframe in a |
| 1057 // different process from its parent page. | 1059 // different process from its parent page. |
| 1058 bool is_subframe_; | 1060 bool is_subframe_; |
| 1059 | 1061 |
| 1060 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1062 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1061 }; | 1063 }; |
| 1062 | 1064 |
| 1063 } // namespace content | 1065 } // namespace content |
| 1064 | 1066 |
| 1065 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1067 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |