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

Unified Diff: components/html_viewer/blink_platform_impl.cc

Issue 1182303012: Componentize html_viewer's MessagePort (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: header-only target types: static_library -> none Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/html_viewer/DEPS ('k') | components/html_viewer/web_message_port_channel_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/blink_platform_impl.cc
diff --git a/components/html_viewer/blink_platform_impl.cc b/components/html_viewer/blink_platform_impl.cc
index 7c37000e818f2954a3ab521608d0089ab1047af0..e054948a0734d0d8fd1a1741653d99a73a5e50b5 100644
--- a/components/html_viewer/blink_platform_impl.cc
+++ b/components/html_viewer/blink_platform_impl.cc
@@ -16,9 +16,9 @@
#include "components/html_viewer/blink_resource_constants.h"
#include "components/html_viewer/web_clipboard_impl.h"
#include "components/html_viewer/web_cookie_jar_impl.h"
-#include "components/html_viewer/web_message_port_channel_impl.h"
#include "components/html_viewer/web_socket_handle_impl.h"
#include "components/html_viewer/web_url_loader_impl.h"
+#include "components/message_port/web_message_port_channel_impl.h"
#include "components/mime_util/mime_util.h"
#include "components/scheduler/child/webthread_impl_for_worker_scheduler.h"
#include "components/scheduler/renderer/renderer_scheduler.h"
@@ -179,7 +179,7 @@ blink::WebCompositorSupport* BlinkPlatformImpl::compositorSupport() {
void BlinkPlatformImpl::createMessageChannel(
blink::WebMessagePortChannel** channel1,
blink::WebMessagePortChannel** channel2) {
- WebMessagePortChannelImpl::CreatePair(channel1, channel2);
+ message_port::WebMessagePortChannelImpl::CreatePair(channel1, channel2);
}
blink::WebScrollbarBehavior* BlinkPlatformImpl::scrollbarBehavior() {
« no previous file with comments | « components/html_viewer/DEPS ('k') | components/html_viewer/web_message_port_channel_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698