summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/devtools_remote.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/debugger/devtools_remote.h')
-rw-r--r--chrome/browser/debugger/devtools_remote.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/debugger/devtools_remote.h b/chrome/browser/debugger/devtools_remote.h
index 713df3d..a0edc6d 100644
--- a/chrome/browser/debugger/devtools_remote.h
+++ b/chrome/browser/debugger/devtools_remote.h
@@ -9,6 +9,7 @@
#include "base/ref_counted.h"
class DevToolsRemoteMessage;
+class ListenSocket;
// This interface should be implemented by a class that wants to handle
// DevToolsRemoteMessages dispatched by some entity. It must extend
@@ -20,6 +21,7 @@ class DevToolsRemoteListener
// This method is invoked on the UI thread whenever the debugger connection
// has been lost.
virtual void OnConnectionLost() = 0;
+ virtual void OnAcceptConnection(ListenSocket* connection) {}
protected:
friend class base::RefCountedThreadSafe<DevToolsRemoteListener>;