| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Simple UI for the command-line V8 debugger consisting of a text field for | 5 // Simple UI for the command-line V8 debugger consisting of a text field for |
| 6 // entry and an output view consisting of (potentially wrapped) lines of text. | 6 // entry and an output view consisting of (potentially wrapped) lines of text. |
| 7 | 7 |
| 8 // TODO(erikkay): investigate replacing this with a DHTML interface | 8 // TODO(erikkay): investigate replacing this with a DHTML interface |
| 9 | 9 |
| 10 #ifndef CHROME_BROWSER_DEBUGGER_DEBUGGER_VIEW_H__ | 10 #ifndef CHROME_BROWSER_DEBUGGER_DEBUGGER_VIEW_H__ |
| 11 #define CHROME_BROWSER_DEBUGGER_DEBUGGER_VIEW_H__ | 11 #define CHROME_BROWSER_DEBUGGER_DEBUGGER_VIEW_H__ |
| 12 | 12 |
| 13 #include "app/gfx/font.h" |
| 13 #include "base/gfx/size.h" | 14 #include "base/gfx/size.h" |
| 14 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 15 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
| 15 #include "views/view.h" | 16 #include "views/view.h" |
| 16 #include "views/controls/text_field.h" | |
| 17 | 17 |
| 18 class DebuggerView; | 18 class DebuggerView; |
| 19 class DebuggerWindow; | 19 class DebuggerWindow; |
| 20 class TabContents; | 20 class TabContents; |
| 21 class TabContentsContainer; | 21 class TabContentsContainer; |
| 22 class Value; | 22 class Value; |
| 23 | 23 |
| 24 class DebuggerView : public views::View, | 24 class DebuggerView : public views::View, |
| 25 public TabContentsDelegate { | 25 public TabContentsDelegate { |
| 26 public: | 26 public: |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 TabContentsContainer* web_container_; | 93 TabContentsContainer* web_container_; |
| 94 std::vector<std::wstring> pending_output_; | 94 std::vector<std::wstring> pending_output_; |
| 95 std::vector<std::string> pending_events_; | 95 std::vector<std::string> pending_events_; |
| 96 bool output_ready_; | 96 bool output_ready_; |
| 97 | 97 |
| 98 DISALLOW_EVIL_CONSTRUCTORS(DebuggerView); | 98 DISALLOW_EVIL_CONSTRUCTORS(DebuggerView); |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 | 101 |
| 102 #endif // CHROME_BROWSER_DEBUGGER_DEBUGGER_VIEW_H__ | 102 #endif // CHROME_BROWSER_DEBUGGER_DEBUGGER_VIEW_H__ |
| OLD | NEW |