| Index: webkit/child/webkitplatformsupport_impl.cc
|
| diff --git a/webkit/child/webkitplatformsupport_impl.cc b/webkit/child/webkitplatformsupport_impl.cc
|
| index ccd988a1ebb618c83b30b491c47df83656f6cc96..1a97d09b5004dbcdc7da6898083a6cb1bb2f9828 100644
|
| --- a/webkit/child/webkitplatformsupport_impl.cc
|
| +++ b/webkit/child/webkitplatformsupport_impl.cc
|
| @@ -46,6 +46,7 @@
|
| #include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h"
|
| #include "ui/base/layout.h"
|
| #include "webkit/child/webkit_child_helpers.h"
|
| +#include "webkit/child/websocket_handle_impl.h"
|
| #include "webkit/child/websocketstreamhandle_impl.h"
|
| #include "webkit/child/weburlloader_impl.h"
|
| #include "webkit/common/user_agent/user_agent.h"
|
| @@ -57,6 +58,7 @@ using WebKit::WebData;
|
| using WebKit::WebLocalizedString;
|
| using WebKit::WebPluginListBuilder;
|
| using WebKit::WebString;
|
| +using WebKit::WebSocketHandle;
|
| using WebKit::WebSocketStreamHandle;
|
| using WebKit::WebURL;
|
| using WebKit::WebURLError;
|
| @@ -365,6 +367,10 @@ WebSocketStreamHandle* WebKitPlatformSupportImpl::createSocketStreamHandle() {
|
| return new WebSocketStreamHandleImpl(this);
|
| }
|
|
|
| +WebSocketHandle* WebKitPlatformSupportImpl::createWebSocketHandle() {
|
| + return new WebSocketHandleImpl(this);
|
| +}
|
| +
|
| WebString WebKitPlatformSupportImpl::userAgent(const WebURL& url) {
|
| return WebString::fromUTF8(webkit_glue::GetUserAgent(url));
|
| }
|
|
|