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

Side by Side Diff: content/browser/debugger/inspectable_tab_proxy.h

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 years, 5 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 5 #ifndef CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/hash_tables.h" 12 #include "base/hash_tables.h"
13 #include "chrome/browser/debugger/devtools_client_host.h" 13 #include "content/browser/debugger/devtools_client_host.h"
14 14
15 class DebuggerRemoteService; 15 class DebuggerRemoteService;
16 class DevToolsClientHost; 16 class DevToolsClientHost;
17 class DevToolsClientHostImpl; 17 class DevToolsClientHostImpl;
18 struct DevToolsMessageData; 18 struct DevToolsMessageData;
19 class TabContentsWrapper; 19 class TabContentsWrapper;
20 20
21 // Proxies debugged tabs' TabContentsWrapper using their UIDs. 21 // Proxies debugged tabs' TabContentsWrapper using their UIDs.
22 // Keeps track of tabs being debugged so that we can detach from 22 // Keeps track of tabs being debugged so that we can detach from
23 // them on remote debugger connection loss. 23 // them on remote debugger connection loss.
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 void OnDebuggerOutput(const std::string& msg); 82 void OnDebuggerOutput(const std::string& msg);
83 virtual void FrameNavigating(const std::string& url); 83 virtual void FrameNavigating(const std::string& url);
84 void TabClosed(); 84 void TabClosed();
85 85
86 int32 id_; 86 int32 id_;
87 DebuggerRemoteService* service_; 87 DebuggerRemoteService* service_;
88 InspectableTabProxy::IdToClientHostMap* map_; 88 InspectableTabProxy::IdToClientHostMap* map_;
89 }; 89 };
90 90
91 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 91 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698