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

Side by Side Diff: content/renderer/dom_proxy_installer.h

Issue 8760024: Cross-process postMessage (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years 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
OLDNEW
(Empty)
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 // Author: supersat@google.com (Karl Koscher)
3
4 #ifndef CONTENT_RENDERER_DOM_PROXY_INSTALLER_H_
5 #define CONTENT_RENDERER_DOM_PROXY_INSTALLER_H_
6
7 #include "content/public/renderer/render_view_observer.h"
8
9 namespace content {
10
11 class DOMProxyListener;
12 class RenderView;
13
14 class DOMProxyInstaller : public RenderViewObserver {
15 public:
16 DOMProxyInstaller(RenderView* render_view, int64 browsing_instance_frame_id);
17 ~DOMProxyInstaller();
18
19 // RenderViewObserver methods
20 virtual void DidFinishDocumentLoad(WebKit::WebFrame* frame);
21 virtual void Navigate(const GURL& url);
22 virtual void ClosePage();
23
24 private:
25 DOMProxyListener* dom_proxy_listener_;
26 int64 browsing_instance_frame_id_;
27 };
28
29 } // namespace content
30 #endif // CONTENT_RENDERER_DOM_PROXY_INSTALLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698