blob: 39158cb3ea77332d87e74122c2a2f42077214d7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_DEBUGGER_DEBUGGER_WINDOW_H__
#define CHROME_BROWSER_DEBUGGER_DEBUGGER_WINDOW_H__
#include "chrome/browser/debugger/debugger_io.h"
#include "chrome/views/window.h"
#include "chrome/views/window_delegate.h"
class DebuggerView;
class ListValue;
class TabContents;
class DebuggerWindow : public DebuggerInputOutput,
public views::WindowDelegate {
public:
DebuggerWindow();
virtual ~DebuggerWindow();
// returns true if a debugger has already been instantiated
static bool DoesDebuggerExist();
// Show the window
void Show(TabContents* tab);
// overrides from DebuggerInputOutput
virtual void Output(const std::wstring& out);
virtual void OutputLine(const std::wstring& out);
virtual void OutputPrompt(const std::wstring& prompt);
virtual void Output(const std::string& out);
virtual void OutputLine(const std::string& out);
virtual void OutputPrompt(const std::string& prompt);
virtual void Start(DebuggerHost* debugger);
virtual void SetDebuggerReady(bool ready);
virtual void SetDebuggerBreak(bool brk);
// Note that this method will take ownership of argv.
virtual void CallFunctionInPage(const std::wstring& name,
ListValue* argv);
// views::WindowDelegate methods:
virtual std::wstring GetWindowTitle() const;
virtual void WindowClosing();
virtual bool CanResize() const;
virtual views::View* GetContentsView();
private:
views::Window* window_;
DebuggerView* view_;
bool debugger_ready_;
bool debugger_break_;
DISALLOW_EVIL_CONSTRUCTORS(DebuggerWindow);
};
#endif // CHROME_BROWSER_DEBUGGER_DEBUGGER_WINDOW_H__
|