DevToolsHttpHandler is moved from content to devtools_http_handler namespace.

This commit is contained in:
Haojian Wu 2015-07-23 15:04:47 +08:00 committed by Cheng Zhao
parent dd11ad8db3
commit 2703f186a6
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@
#include "base/command_line.h"
#include "base/strings/string_number_conversions.h"
#include "content/public/browser/devtools_http_handler.h"
#include "components/devtools_http_handler/devtools_http_handler.h"
#include "content/public/common/content_switches.h"
#include "net/proxy/proxy_resolver_v8.h"

View file

@ -9,7 +9,7 @@
#include "base/memory/scoped_ptr.h"
#include "content/public/browser/browser_main_parts.h"
namespace content {
namespace devtools_http_handler {
class DevToolsHttpHandler;
}
@ -58,7 +58,7 @@ class BrowserMainParts : public content::BrowserMainParts {
scoped_ptr<BrowserContext> browser_context_;
scoped_ptr<WebUIControllerFactory> web_ui_controller_factory_;
scoped_ptr<content::DevToolsHttpHandler> devtools_http_handler_;
scoped_ptr<devtools_http_handler::DevToolsHttpHandler> devtools_http_handler_;
#if defined(TOOLKIT_VIEWS)
scoped_ptr<ViewsDelegate> views_delegate_;