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

Unified Diff: webkit/tools/test_shell/simple_resource_loader_bridge.cc

Issue 243108: Enable WebSocket in test_shell (Closed)
Patch Set: add +net/socket_stream in webkit/DEPS Created 11 years, 2 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
Index: webkit/tools/test_shell/simple_resource_loader_bridge.cc
diff --git a/webkit/tools/test_shell/simple_resource_loader_bridge.cc b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
index 0f1be30285790fe166b3198e89a9c36e727f8cf7..d45d443f4ac47be790671a310499cc9f8168fcd4 100644
--- a/webkit/tools/test_shell/simple_resource_loader_bridge.cc
+++ b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
@@ -50,6 +50,7 @@
#include "webkit/appcache/appcache_interfaces.h"
#include "webkit/glue/resource_loader_bridge.h"
#include "webkit/tools/test_shell/simple_appcache_system.h"
+#include "webkit/tools/test_shell/simple_socket_stream_bridge.h"
#include "webkit/tools/test_shell/test_shell_request_context.h"
using webkit_glue::ResourceLoaderBridge;
@@ -76,9 +77,11 @@ class IOThread : public base::Thread {
virtual void Init() {
SimpleAppCacheSystem::InitializeOnIOThread(request_context);
+ SimpleSocketStreamBridge::InitializeOnIOThread(request_context);
}
virtual void CleanUp() {
+ SimpleSocketStreamBridge::Cleanup();
if (request_context) {
request_context->Release();
request_context = NULL;
« no previous file with comments | « webkit/tools/layout_tests/test_expectations.txt ('k') | webkit/tools/test_shell/simple_socket_stream_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698