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

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

Issue 1974613002: Remove code that was only used by navigator.connect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android webview build Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/core/dom/MessagePort.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14 matching lines...) Expand all
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 #include "WebCommon.h" 34 #include "WebCommon.h"
35 #include <v8.h>
36 35
37 namespace blink { 36 namespace blink {
38 37
39 // Provides an interface for users of WebMessagePortChannel to be notified 38 // Provides an interface for users of WebMessagePortChannel to be notified
40 // when messages are available. This also gives users of WebMessagePortChannel 39 // when messages are available. This also gives users of WebMessagePortChannel
41 // access to the V8 Context this message port lives in. 40 // access to the V8 Context this message port lives in.
kinuko 2016/05/12 02:04:47 nit: The second sentence seems now obsolete
42 class BLINK_PLATFORM_EXPORT WebMessagePortChannelClient { 41 class BLINK_PLATFORM_EXPORT WebMessagePortChannelClient {
43 public: 42 public:
44 // Alerts that new messages have arrived, which are retrieved by calling 43 // Alerts that new messages have arrived, which are retrieved by calling
45 // WebMessagePortChannel::tryGetMessage. Note that this may be called 44 // WebMessagePortChannel::tryGetMessage. Note that this may be called
46 // on any thread. 45 // on any thread.
47 virtual void messageAvailable() = 0; 46 virtual void messageAvailable() = 0;
48 47
49 // Returns the V8 isolate this message port lives in.
50 // Do not rely on this API, it is only exposed so content code can convert
51 // messages to base::Value, and will be removed when this conversion can be
52 // integrated into blink itself.
53 virtual v8::Isolate* scriptIsolate() = 0;
54
55 // Returns a V8 context messages sent to this port can be (de)serialized in.
56 // Can return null if no valid V8 context could be determined.
57 // Do not rely on this API, it is only exposed so content code can convert
58 // messages to base::Value, and will be removed when this conversion can be
59 // integrated into blink itself.
60 // FIXME: Remove this method when no longer needed (http://crbug.com/461906)
61 virtual v8::Local<v8::Context> scriptContextForMessageConversion() = 0;
62
63 protected: 48 protected:
64 ~WebMessagePortChannelClient() { } 49 ~WebMessagePortChannelClient() { }
65 }; 50 };
66 51
67 } // namespace blink 52 } // namespace blink
68 53
69 #endif 54 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/MessagePort.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698