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

Unified Diff: chrome/browser/debugger/debugger_wrapper.h

Issue 6356015: DevTools: enable remote debugging with front-end served from the cloud. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Lint Created 9 years, 11 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
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/debugger/debugger_wrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/debugger_wrapper.h
diff --git a/chrome/browser/debugger/debugger_wrapper.h b/chrome/browser/debugger/debugger_wrapper.h
deleted file mode 100644
index a9cf7bfd5f7d80f9a258f134889efc41bf49c37e..0000000000000000000000000000000000000000
--- a/chrome/browser/debugger/debugger_wrapper.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Include this file if you need to access the Debugger outside of the debugger
-// project. Don't include debugger.h directly. If there's functionality from
-// Debugger needed, add new wrapper methods to this file.
-
-#ifndef CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
-#define CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
-#pragma once
-
-#include "base/basictypes.h"
-#include "base/ref_counted.h"
-
-class DebuggerHost;
-class DevToolsHttpProtocolHandler;
-class DevToolsProtocolHandler;
-class DevToolsRemoteListenSocket;
-
-class DebuggerWrapper : public base::RefCountedThreadSafe<DebuggerWrapper> {
- public:
- DebuggerWrapper(int port, bool useHttp);
-
- private:
- friend class base::RefCountedThreadSafe<DebuggerWrapper>;
-
- virtual ~DebuggerWrapper();
-
- scoped_refptr<DevToolsProtocolHandler> proto_handler_;
- scoped_refptr<DevToolsHttpProtocolHandler> http_handler_;
-};
-
-#endif // CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/debugger/debugger_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698