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

Side by Side Diff: content/browser/debugger/devtools_manager.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_DEVTOOLS_MANAGER_H_ 5 #ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_MANAGER_H_
6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_MANAGER_H_ 6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_MANAGER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 11
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "chrome/browser/debugger/devtools_client_host.h" 13 #include "content/browser/debugger/devtools_client_host.h"
14 #include "chrome/browser/debugger/devtools_toggle_action.h" 14 #include "content/browser/debugger/devtools_toggle_action.h"
15 #include "content/common/notification_observer.h" 15 #include "content/common/notification_observer.h"
16 #include "content/common/notification_registrar.h" 16 #include "content/common/notification_registrar.h"
17 #include "webkit/glue/resource_loader_bridge.h" 17 #include "webkit/glue/resource_loader_bridge.h"
18 18
19 namespace IPC { 19 namespace IPC {
20 class Message; 20 class Message;
21 } 21 }
22 22
23 class DevToolsNetLogObserver; 23 class DevToolsNetLogObserver;
24 class GURL; 24 class GURL;
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 OrphanClientHosts; 164 OrphanClientHosts;
165 OrphanClientHosts orphan_client_hosts_; 165 OrphanClientHosts orphan_client_hosts_;
166 int last_orphan_cookie_; 166 int last_orphan_cookie_;
167 167
168 NotificationRegistrar registrar_; 168 NotificationRegistrar registrar_;
169 169
170 DISALLOW_COPY_AND_ASSIGN(DevToolsManager); 170 DISALLOW_COPY_AND_ASSIGN(DevToolsManager);
171 }; 171 };
172 172
173 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_MANAGER_H_ 173 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698