OLD | NEW |
---|---|
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 Loading... | |
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 { | |
haraken
2015/02/25 18:49:59
We conventionally just include <v8.h> instead of u
Marijn Kruisselbrink
2015/02/25 19:08:51
Done.
| |
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 a V8 context messages sent to this port can be (de)serialized in. | |
haraken
2015/02/25 18:49:59
Add a FIXME to remove this.
Marijn Kruisselbrink
2015/02/25 19:08:51
Done (and filed a bug as well).
| |
59 // Can return null if no valid V8 context could be determined. | |
60 // Do not rely on this API, it is only exposed so content code can convert | |
61 // messages to base::Value, and will be removed when this conversion can be | |
62 // integrated into blink itself. | |
63 virtual v8::Handle<v8::Context> scriptContextForMessageConversion() = 0; | |
64 | |
45 protected: | 65 protected: |
46 ~WebMessagePortChannelClient() { } | 66 ~WebMessagePortChannelClient() { } |
47 }; | 67 }; |
48 | 68 |
49 } // namespace blink | 69 } // namespace blink |
50 | 70 |
51 #endif | 71 #endif |
OLD | NEW |