summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/devtools_http_protocol_handler.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-13 22:31:58 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-13 22:31:58 +0000
commita8c229cc41f24d97c3d44b32e4a3206984b56845 (patch)
tree03f676fb62d874bf0be0184c4b4f0586afb8c5da /chrome/browser/debugger/devtools_http_protocol_handler.cc
parentf8502681d0b8feedc74ad467364eb72d185b5856 (diff)
downloadchromium_src-a8c229cc41f24d97c3d44b32e4a3206984b56845.zip
chromium_src-a8c229cc41f24d97c3d44b32e4a3206984b56845.tar.gz
chromium_src-a8c229cc41f24d97c3d44b32e4a3206984b56845.tar.bz2
Cleanup: Remove unneeded chrome/browser/ui/browser.h usage.
BUG=none TEST=none Review URL: http://codereview.chromium.org/6260001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71368 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger/devtools_http_protocol_handler.cc')
-rw-r--r--chrome/browser/debugger/devtools_http_protocol_handler.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/debugger/devtools_http_protocol_handler.cc b/chrome/browser/debugger/devtools_http_protocol_handler.cc
index 6f2deb4..da80b06 100644
--- a/chrome/browser/debugger/devtools_http_protocol_handler.cc
+++ b/chrome/browser/debugger/devtools_http_protocol_handler.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/debugger/devtools_http_protocol_handler.h"
+#include <utility>
+
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "base/message_loop_proxy.h"
@@ -17,7 +19,6 @@
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/browser/tabs/tab_strip_model.h"
-#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "chrome/common/devtools_messages.h"
#include "chrome/common/net/url_request_context_getter.h"
@@ -67,7 +68,7 @@ class DevToolsClientHostImpl : public DevToolsClientHost {
HttpListenSocket* socket_;
};
-}
+} // namespace
DevToolsHttpProtocolHandler::~DevToolsHttpProtocolHandler() {
// Stop() must be called prior to this being called