summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/dev_tools_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/debugger/dev_tools_window.h')
-rw-r--r--chrome/browser/debugger/dev_tools_window.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/chrome/browser/debugger/dev_tools_window.h b/chrome/browser/debugger/dev_tools_window.h
deleted file mode 100644
index d20a801..0000000
--- a/chrome/browser/debugger/dev_tools_window.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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_DEV_TOOLS_WINDOW_H_
-#define CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_
-
-#include "base/basictypes.h"
-
-#include "chrome/views/window_delegate.h"
-
-namespace IPC {
-class Message;
-}
-namespace views {
-class Window;
-}
-class DevToolsView;
-class TabContents;
-
-class DevToolsWindow : public views::WindowDelegate {
- public:
- DevToolsWindow();
- virtual ~DevToolsWindow();
-
- // Show inspector window for the tab
- void Show(int inspected_process_id,
- int inspected_view_id);
-
- void SendDevToolsClientMessage(const IPC::Message& message);
-
- private:
- // views::WindowDelegate methods:
- virtual std::wstring GetWindowTitle() const;
- virtual void WindowClosing();
- virtual bool CanResize() const;
- virtual views::View* GetContentsView();
-
- views::Window* window_;
- DevToolsView* tools_view_;
-
- DISALLOW_COPY_AND_ASSIGN(DevToolsWindow);
-};
-
-#endif // CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_