Chromium Code Reviews| Index: chrome/browser/debugger/devtools_remote.h |
| =================================================================== |
| --- chrome/browser/debugger/devtools_remote.h (revision 80449) |
| +++ chrome/browser/debugger/devtools_remote.h (working copy) |
| @@ -6,6 +6,8 @@ |
| #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_REMOTE_H_ |
| #pragma once |
| +#include <netinet/in.h> |
| + |
| #include "base/basictypes.h" |
| #include "base/memory/ref_counted.h" |
| @@ -23,6 +25,7 @@ |
| // has been lost. |
| virtual void OnConnectionLost() = 0; |
| virtual void OnAcceptConnection(ListenSocket* connection) {} |
| + virtual int protocol() {return IPPROTO_TCP; } |
|
Mike Belshe
2011/04/06 18:32:53
nit: in pure virtual interface classes, we try to
|
| protected: |
| friend class base::RefCountedThreadSafe<DevToolsRemoteListener>; |