| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ |
| 6 #define CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ | 6 #define CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 WindowOpenDisposition disposition, | 70 WindowOpenDisposition disposition, |
| 71 const gfx::Rect& initial_pos, | 71 const gfx::Rect& initial_pos, |
| 72 bool user_gesture) {} | 72 bool user_gesture) {} |
| 73 virtual void ActivateContents(TabContents* contents) {} | 73 virtual void ActivateContents(TabContents* contents) {} |
| 74 virtual void LoadingStateChanged(TabContents* source) {} | 74 virtual void LoadingStateChanged(TabContents* source) {} |
| 75 virtual void CloseContents(TabContents* source) {} | 75 virtual void CloseContents(TabContents* source) {} |
| 76 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} | 76 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} |
| 77 virtual bool IsPopup(TabContents* source) { return false; } | 77 virtual bool IsPopup(TabContents* source) { return false; } |
| 78 virtual void URLStarredChanged(TabContents* source, bool starred) {} | 78 virtual void URLStarredChanged(TabContents* source, bool starred) {} |
| 79 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {} | 79 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {} |
| 80 virtual void ChildWindowsChanged(TabContents* source) {} |
| 80 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating) {} | 81 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating) {} |
| 81 | 82 |
| 82 Profile* profile_; | 83 Profile* profile_; |
| 83 TabContents* inspected_tab_; | 84 TabContents* inspected_tab_; |
| 84 TabContents* tab_contents_; | 85 TabContents* tab_contents_; |
| 85 Browser* browser_; | 86 Browser* browser_; |
| 86 BrowserWindow* inspected_window_; | 87 BrowserWindow* inspected_window_; |
| 87 bool docked_; | 88 bool docked_; |
| 88 NotificationRegistrar registrar_; | 89 NotificationRegistrar registrar_; |
| 89 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); | 90 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); |
| 90 }; | 91 }; |
| 91 | 92 |
| 92 #endif // CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ | 93 #endif // CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ |
| OLD | NEW |