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

Side by Side Diff: public/platform/WebMessagePortChannelClient.h

Issue 924983002: Expose v8 context a MessagePort lives in to give content side code a valid context to (de)serialize… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add a warning that this API should not be used Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef WebMessagePortChannelClient_h 31 #ifndef WebMessagePortChannelClient_h
32 #define WebMessagePortChannelClient_h 32 #define WebMessagePortChannelClient_h
33 33
34 namespace v8 {
35 class Context;
36 template<typename T> class Handle;
37 class Isolate;
38 }
39
34 namespace blink { 40 namespace blink {
35 41
36 // Provides an interface for users of WebMessagePortChannel to be notified 42 // Provides an interface for users of WebMessagePortChannel to be notified
37 // when messages are available. 43 // when messages are available. This also gives users of WebMessagePortChannel
44 // access to the V8 Context this message port lives in.
38 class WebMessagePortChannelClient { 45 class WebMessagePortChannelClient {
39 public: 46 public:
40 // Alerts that new messages have arrived, which are retrieved by calling 47 // Alerts that new messages have arrived, which are retrieved by calling
41 // WebMessagePortChannel::tryGetMessage. Note that this may be called 48 // WebMessagePortChannel::tryGetMessage. Note that this may be called
42 // on any thread. 49 // on any thread.
43 virtual void messageAvailable() = 0; 50 virtual void messageAvailable() = 0;
44 51
52 // Returns the V8 isolate this message port lives in.
53 // Do not rely on this API, it is only exposed so content code can convert
54 // messages to base::Value, and will be removed when this conversion can be
55 // integrated into blink itself.
56 virtual v8::Isolate* scriptIsolate() = 0;
57
58 // Returns the V8 context this message port lives in.
haraken 2015/02/24 10:35:33 As jochen pointed out, using a wrong context is a
59 // Do not rely on this API, it is only exposed so content code can convert
60 // messages to base::Value, and will be removed when this conversion can be
61 // integrated into blink itself.
62 virtual v8::Handle<v8::Context> scriptContext() = 0;
63
45 protected: 64 protected:
46 ~WebMessagePortChannelClient() { } 65 ~WebMessagePortChannelClient() { }
47 }; 66 };
48 67
49 } // namespace blink 68 } // namespace blink
50 69
51 #endif 70 #endif
OLDNEW
« Source/core/dom/MessagePort.cpp ('K') | « Source/core/dom/MessagePort.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698