OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-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_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/gfx/native_widget_types.h" | 10 #include "base/gfx/native_widget_types.h" |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 virtual void Close(); | 197 virtual void Close(); |
198 virtual void Activate(); | 198 virtual void Activate(); |
199 virtual bool IsActive() const; | 199 virtual bool IsActive() const; |
200 virtual void FlashFrame(); | 200 virtual void FlashFrame(); |
201 virtual gfx::NativeWindow GetNativeHandle(); | 201 virtual gfx::NativeWindow GetNativeHandle(); |
202 virtual BrowserWindowTesting* GetBrowserWindowTesting(); | 202 virtual BrowserWindowTesting* GetBrowserWindowTesting(); |
203 virtual StatusBubble* GetStatusBubble(); | 203 virtual StatusBubble* GetStatusBubble(); |
204 virtual void SelectedTabToolbarSizeChanged(bool is_animating); | 204 virtual void SelectedTabToolbarSizeChanged(bool is_animating); |
205 virtual void UpdateTitleBar(); | 205 virtual void UpdateTitleBar(); |
206 virtual void UpdateDevTools(); | 206 virtual void UpdateDevTools(); |
| 207 virtual void FocusDevTools(); |
207 virtual void UpdateLoadingAnimations(bool should_animate); | 208 virtual void UpdateLoadingAnimations(bool should_animate); |
208 virtual void SetStarredState(bool is_starred); | 209 virtual void SetStarredState(bool is_starred); |
209 virtual gfx::Rect GetNormalBounds() const; | 210 virtual gfx::Rect GetNormalBounds() const; |
210 virtual bool IsMaximized() const; | 211 virtual bool IsMaximized() const; |
211 virtual void SetFullscreen(bool fullscreen); | 212 virtual void SetFullscreen(bool fullscreen); |
212 virtual bool IsFullscreen() const; | 213 virtual bool IsFullscreen() const; |
213 virtual LocationBar* GetLocationBar() const; | 214 virtual LocationBar* GetLocationBar() const; |
214 virtual void SetFocusToLocationBar(); | 215 virtual void SetFocusToLocationBar(); |
215 virtual void UpdateStopGoState(bool is_loading, bool force); | 216 virtual void UpdateStopGoState(bool is_loading, bool force); |
216 virtual void UpdateToolbar(TabContents* contents, bool should_restore_state); | 217 virtual void UpdateToolbar(TabContents* contents, bool should_restore_state); |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 // A bottom bar for showing extensions. | 476 // A bottom bar for showing extensions. |
476 ExtensionShelf* extension_shelf_; | 477 ExtensionShelf* extension_shelf_; |
477 | 478 |
478 typedef std::set<BrowserBubble*> BubbleSet; | 479 typedef std::set<BrowserBubble*> BubbleSet; |
479 BubbleSet browser_bubbles_; | 480 BubbleSet browser_bubbles_; |
480 | 481 |
481 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 482 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
482 }; | 483 }; |
483 | 484 |
484 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 485 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |