| 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 #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 "chrome/browser/browser.h" | 8 #include "chrome/browser/browser.h" |
| 9 #include "chrome/browser/browser_window.h" | 9 #include "chrome/browser/browser_window.h" |
| 10 #include "chrome/browser/hang_monitor/hung_plugin_action.h" | 10 #include "chrome/browser/hang_monitor/hung_plugin_action.h" |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 static void RegisterBrowserViewPrefs(PrefService* prefs); | 162 static void RegisterBrowserViewPrefs(PrefService* prefs); |
| 163 | 163 |
| 164 // Overridden from BrowserWindow: | 164 // Overridden from BrowserWindow: |
| 165 virtual void Init(); | 165 virtual void Init(); |
| 166 virtual void Show(); | 166 virtual void Show(); |
| 167 virtual void SetBounds(const gfx::Rect& bounds); | 167 virtual void SetBounds(const gfx::Rect& bounds); |
| 168 virtual void Close(); | 168 virtual void Close(); |
| 169 virtual void Activate(); | 169 virtual void Activate(); |
| 170 virtual bool IsActive() const; | 170 virtual bool IsActive() const; |
| 171 virtual void FlashFrame(); | 171 virtual void FlashFrame(); |
| 172 virtual void* GetNativeHandle(); | 172 virtual gfx::NativeWindow GetNativeHandle(); |
| 173 virtual BrowserWindowTesting* GetBrowserWindowTesting(); | 173 virtual BrowserWindowTesting* GetBrowserWindowTesting(); |
| 174 virtual StatusBubble* GetStatusBubble(); | 174 virtual StatusBubble* GetStatusBubble(); |
| 175 virtual void SelectedTabToolbarSizeChanged(bool is_animating); | 175 virtual void SelectedTabToolbarSizeChanged(bool is_animating); |
| 176 virtual void UpdateTitleBar(); | 176 virtual void UpdateTitleBar(); |
| 177 virtual void UpdateLoadingAnimations(bool should_animate); | 177 virtual void UpdateLoadingAnimations(bool should_animate); |
| 178 virtual void SetStarredState(bool is_starred); | 178 virtual void SetStarredState(bool is_starred); |
| 179 virtual gfx::Rect GetNormalBounds() const; | 179 virtual gfx::Rect GetNormalBounds() const; |
| 180 virtual bool IsMaximized() const; | 180 virtual bool IsMaximized() const; |
| 181 virtual void SetFullscreen(bool fullscreen); | 181 virtual void SetFullscreen(bool fullscreen); |
| 182 virtual bool IsFullscreen() const; | 182 virtual bool IsFullscreen() const; |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 // P13N stuff | 432 // P13N stuff |
| 433 #ifdef CHROME_PERSONALIZATION | 433 #ifdef CHROME_PERSONALIZATION |
| 434 FramePersonalization personalization_; | 434 FramePersonalization personalization_; |
| 435 bool personalization_enabled_; | 435 bool personalization_enabled_; |
| 436 #endif | 436 #endif |
| 437 | 437 |
| 438 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 438 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 439 }; | 439 }; |
| 440 | 440 |
| 441 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 441 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |