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

Side by Side 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, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/debugger/debugger_wrapper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Include this file if you need to access the Debugger outside of the debugger
6 // project. Don't include debugger.h directly. If there's functionality from
7 // Debugger needed, add new wrapper methods to this file.
8
9 #ifndef CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
10 #define CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
11 #pragma once
12
13 #include "base/basictypes.h"
14 #include "base/ref_counted.h"
15
16 class DebuggerHost;
17 class DevToolsHttpProtocolHandler;
18 class DevToolsProtocolHandler;
19 class DevToolsRemoteListenSocket;
20
21 class DebuggerWrapper : public base::RefCountedThreadSafe<DebuggerWrapper> {
22 public:
23 DebuggerWrapper(int port, bool useHttp);
24
25 private:
26 friend class base::RefCountedThreadSafe<DebuggerWrapper>;
27
28 virtual ~DebuggerWrapper();
29
30 scoped_refptr<DevToolsProtocolHandler> proto_handler_;
31 scoped_refptr<DevToolsHttpProtocolHandler> http_handler_;
32 };
33
34 #endif // CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
OLDNEW
« 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