Index: chrome/browser/debugger/debugger_window.h |
=================================================================== |
--- chrome/browser/debugger/debugger_window.h (revision 15515) |
+++ chrome/browser/debugger/debugger_window.h (working copy) |
@@ -9,6 +9,7 @@ |
#include "chrome/views/window/window.h" |
#include "chrome/views/window/window_delegate.h" |
+class DebuggerHost; |
class DebuggerView; |
class ListValue; |
class TabContents; |
@@ -20,7 +21,7 @@ |
virtual ~DebuggerWindow(); |
// returns true if a debugger has already been instantiated |
- static bool DoesDebuggerExist(); |
+ static DebuggerHost* GetAnyExistingDebugger(); |
// Show the window |
void Show(TabContents* tab); |
@@ -35,6 +36,7 @@ |
virtual void Start(DebuggerHost* debugger); |
virtual void SetDebuggerReady(bool ready); |
virtual void SetDebuggerBreak(bool brk); |
+ virtual bool ShowWindow(); |
// Note that this method will take ownership of argv. |
virtual void CallFunctionInPage(const std::wstring& name, |