From 724214aea569fd0fe6be1ecbacf9e7d8c5e87555 Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Thu, 29 Dec 2011 23:58:00 +0000 Subject: Create an API around WorkerService that chrome consumes. Rename the existing WorkerService to WorkerServiceImpl and put it in the content namespace while at it. Also move WorkerServiceObserver to the public directory and into the content namespace. BUG=98716 Review URL: http://codereview.chromium.org/9052007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116007 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/debugger/devtools_sanity_unittest.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'chrome/browser/debugger/devtools_sanity_unittest.cc') diff --git a/chrome/browser/debugger/devtools_sanity_unittest.cc b/chrome/browser/debugger/devtools_sanity_unittest.cc index fef4634..1279f02 100644 --- a/chrome/browser/debugger/devtools_sanity_unittest.cc +++ b/chrome/browser/debugger/devtools_sanity_unittest.cc @@ -26,20 +26,22 @@ #include "content/browser/renderer_host/render_view_host.h" #include "content/browser/tab_contents/tab_contents.h" #include "content/browser/worker_host/worker_process_host.h" -#include "content/browser/worker_host/worker_service.h" -#include "content/browser/worker_host/worker_service_observer.h" #include "content/public/browser/devtools_agent_host_registry.h" #include "content/public/browser/devtools_client_host.h" #include "content/public/browser/devtools_manager.h" #include "content/public/browser/content_browser_client.h" #include "content/public/browser/notification_registrar.h" #include "content/public/browser/notification_service.h" +#include "content/public/browser/worker_service.h" +#include "content/public/browser/worker_service_observer.h" #include "net/test/test_server.h" using content::BrowserThread; using content::DevToolsManager; using content::DevToolsAgentHost; using content::DevToolsAgentHostRegistry; +using content::WorkerService; +using content::WorkerServiceObserver; namespace { -- cgit v1.1