blob: 03889a4099bd54b6ce204b721a8e2dd2235e1b60 (
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
|
// 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_DEVTOOLS_WINDOW_WIN_H_
#define CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_WIN_H_
#include "base/basictypes.h"
#include "chrome/browser/debugger/devtools_window.h"
#include "views/window/window_delegate.h"
namespace views {
class Window;
}
class DevToolsView;
class TabContents;
class DevToolsWindowWin : public DevToolsWindow,
public views::WindowDelegate {
public:
virtual ~DevToolsWindowWin();
// DevToolsWindow implementation.
virtual void Show();
virtual bool HasRenderViewHost(const RenderViewHost& rvh) const;
virtual void InspectedTabClosing();
virtual void SetInspectedTabUrl(const std::string& url);
virtual void SendMessageToClient(const IPC::Message& message);
private:
friend class DevToolsWindow;
DevToolsWindowWin(DevToolsView* view);
// views::WindowDelegate methods:
virtual std::wstring GetWindowTitle() const;
virtual void WindowClosing();
virtual bool CanResize() const;
virtual views::View* GetContentsView();
virtual void DeleteDelegate();
DevToolsView* tools_view_;
std::string inspected_url_;
DISALLOW_COPY_AND_ASSIGN(DevToolsWindowWin);
};
#endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_WIN_H_
|