diff options
author | sgurun <sgurun@chromium.org> | 2015-03-11 18:11:47 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-12 01:12:21 +0000 |
commit | 758671bdf97f247de84ce6c814e852b02bdf8366 (patch) | |
tree | 397a49dbd3d5e9990ceeb0bd374d148eb43a86d2 /content/browser/message_port_provider.cc | |
parent | 22f04ffa54f12fdb75e90202def5199759054eab (diff) | |
download | chromium_src-758671bdf97f247de84ce6c814e852b02bdf8366.zip chromium_src-758671bdf97f247de84ce6c814e852b02bdf8366.tar.gz chromium_src-758671bdf97f247de84ce6c814e852b02bdf8366.tar.bz2 |
This CL addresses a long standing TODO to implement transferring ports from JS to Java.
Note that this is the last piece of MessageChannel puzzle. With this, we can consider basic implementation done. There is a missing feature to implement posting messages to frames given with their names, but this has other dependency.
We can now start further testing, optimization and refactorings.
BUG=393291
Review URL: https://codereview.chromium.org/995663002
Cr-Commit-Position: refs/heads/master@{#320198}
Diffstat (limited to 'content/browser/message_port_provider.cc')
-rw-r--r-- | content/browser/message_port_provider.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/content/browser/message_port_provider.cc b/content/browser/message_port_provider.cc index f90ee7b..eb932d9 100644 --- a/content/browser/message_port_provider.cc +++ b/content/browser/message_port_provider.cc @@ -99,4 +99,13 @@ void MessagePortProvider::OnMessagePortDelegateClosing( MessagePortService::GetInstance()->OnMessagePortDelegateClosing(delegate); } +// static +void MessagePortProvider::UpdateMessagePort(int message_port_id, + MessagePortDelegate* delegate) { + DCHECK_CURRENTLY_ON(BrowserThread::IO); + MessagePortService::GetInstance()->UpdateMessagePort(message_port_id, + delegate, + message_port_id); +} + } // namespace content |