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

Side by Side Diff: content/renderer/dom_proxy_listener.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 (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_DOM_PROXY_LISTENER_H_
6 #define CONTENT_RENDERER_DOM_PROXY_LISTENER_H_
7
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEventListener.h "
9
10 using WebKit::WebDOMEvent;
11 using WebKit::WebDOMEventListener;
12 using WebKit::WebFrame;
13
14 namespace content {
15
16 class DOMProxyListener : public WebDOMEventListener {
17 public:
18 explicit DOMProxyListener(WebFrame* frame,
19 int64 browsing_instance_frame_id);
20 virtual ~DOMProxyListener();
21
22 // WebDOMEventListener methods
23 virtual void handleEvent(const WebDOMEvent& event);
24 private:
25 WebFrame* frame_;
26 int64 browsing_instance_frame_id_;
27 };
28
29 } // namespace content
30 #endif // CONTENT_RENDERER_DOM_PROXY_LISTENER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698