Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 157713002: Switch DomAutomationController to be a RenderFrameObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add notification to interstitialpageimpl Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698