blob: cc03a44e1c21bdb64f1f86f707be9cac53010ab7 (
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
60
61
62
63
64
65
66
|
// Copyright (c) 2009 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_TOOLS_WINDOW_H_
#define CHROME_BROWSER_DEBUGGER_TOOLS_WINDOW_H_
#include "base/basictypes.h"
// TODO(yurys): port to other platforms
#if defined(OS_WIN)
#include "chrome/views/window_delegate.h"
namespace views {
class Window;
}
class ToolsView;
class TabContents;
class ToolsWindow : public views::WindowDelegate {
public:
ToolsWindow();
virtual ~ToolsWindow();
// Show inspector window for the tab
void Show(int inspected_process_id,
int inspected_view_id);
void SendToolsClientMessage(int tools_message_type,
const std::wstring& body);
private:
// views::WindowDelegate methods:
virtual std::wstring GetWindowTitle() const;
virtual void WindowClosing();
virtual bool CanResize() const;
virtual views::View* GetContentsView();
views::Window* window_;
ToolsView* tools_view_;
DISALLOW_COPY_AND_ASSIGN(ToolsWindow);
};
#else // defined(OS_WIN)
class ToolsWindow {
public:
ToolsWindow() {};
virtual ~ToolsWindow() {};
// Show inspector window for the tab
void Show(int inspected_process_id,
int inspected_view_id) {};
void SendToolsClientMessage(int tools_message_type,
const std::wstring& body) {}
private:
DISALLOW_COPY_AND_ASSIGN(ToolsWindow);
};
#endif // OS_WIN
#endif // CHROME_BROWSER_DEBUGGER_TOOLS_WINDOW_H_
|