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

Side by Side Diff: content/browser/debugger/extension_ports_remote_service.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 // ExtensionsPorts service: wires extension message ports through the 5 // ExtensionsPorts service: wires extension message ports through the
6 // devtools remote protocol, allowing an external client program to 6 // devtools remote protocol, allowing an external client program to
7 // exchange messages with Chrome extensions. 7 // exchange messages with Chrome extensions.
8 8
9 #ifndef CHROME_BROWSER_DEBUGGER_EXTENSION_PORTS_REMOTE_SERVICE_H_ 9 #ifndef CHROME_BROWSER_DEBUGGER_EXTENSION_PORTS_REMOTE_SERVICE_H_
brettw 2011/06/29 16:44:55 All of the include guards in this new directory ar
Jói 2011/06/30 15:48:12 Doh, that was on my list but I forgot to do it. C
10 #define CHROME_BROWSER_DEBUGGER_EXTENSION_PORTS_REMOTE_SERVICE_H_ 10 #define CHROME_BROWSER_DEBUGGER_EXTENSION_PORTS_REMOTE_SERVICE_H_
11 #pragma once 11 #pragma once
12 12
13 #include <set> 13 #include <set>
14 #include <string> 14 #include <string>
15 15
16 #include "base/basictypes.h" 16 #include "base/basictypes.h"
17 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
18 #include "chrome/browser/debugger/devtools_remote.h"
19 #include "chrome/browser/extensions/extension_message_service.h" 18 #include "chrome/browser/extensions/extension_message_service.h"
19 #include "content/browser/debugger/devtools_remote.h"
20 #include "ipc/ipc_message.h" 20 #include "ipc/ipc_message.h"
21 21
22 class DevToolsProtocolHandler; 22 class DevToolsProtocolHandler;
23 class DevToolsRemoteMessage; 23 class DevToolsRemoteMessage;
24 class DictionaryValue; 24 class DictionaryValue;
25 class GURL; 25 class GURL;
26 class ListValue; 26 class ListValue;
27 class Value; 27 class Value;
28 28
29 class ExtensionPortsRemoteService : public DevToolsRemoteListener, 29 class ExtensionPortsRemoteService : public DevToolsRemoteListener,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 // Set of message port IDs we successfully opened. 101 // Set of message port IDs we successfully opened.
102 typedef std::set<int> PortIdSet; 102 typedef std::set<int> PortIdSet;
103 PortIdSet openPortIds_; 103 PortIdSet openPortIds_;
104 104
105 scoped_refptr<ExtensionMessageService> service_; 105 scoped_refptr<ExtensionMessageService> service_;
106 106
107 DISALLOW_COPY_AND_ASSIGN(ExtensionPortsRemoteService); 107 DISALLOW_COPY_AND_ASSIGN(ExtensionPortsRemoteService);
108 }; 108 };
109 109
110 #endif // CHROME_BROWSER_DEBUGGER_EXTENSION_PORTS_REMOTE_SERVICE_H_ 110 #endif // CHROME_BROWSER_DEBUGGER_EXTENSION_PORTS_REMOTE_SERVICE_H_
OLDNEW
« no previous file with comments | « content/browser/debugger/devtools_window.cc ('k') | content/browser/debugger/extension_ports_remote_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698