| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 void RestoreFocus(); | 236 void RestoreFocus(); |
| 237 | 237 |
| 238 // Called when the activation of the frame changes. | 238 // Called when the activation of the frame changes. |
| 239 virtual void ActivationChanged(bool activated); | 239 virtual void ActivationChanged(bool activated); |
| 240 | 240 |
| 241 // Overridden from BrowserWindow: | 241 // Overridden from BrowserWindow: |
| 242 virtual void Show(); | 242 virtual void Show(); |
| 243 virtual void SetBounds(const gfx::Rect& bounds); | 243 virtual void SetBounds(const gfx::Rect& bounds); |
| 244 virtual void Close(); | 244 virtual void Close(); |
| 245 virtual void Activate(); | 245 virtual void Activate(); |
| 246 virtual void Deactivate(); |
| 246 virtual bool IsActive() const; | 247 virtual bool IsActive() const; |
| 247 virtual void FlashFrame(); | 248 virtual void FlashFrame(); |
| 248 virtual gfx::NativeWindow GetNativeHandle(); | 249 virtual gfx::NativeWindow GetNativeHandle(); |
| 249 virtual BrowserWindowTesting* GetBrowserWindowTesting(); | 250 virtual BrowserWindowTesting* GetBrowserWindowTesting(); |
| 250 virtual StatusBubble* GetStatusBubble(); | 251 virtual StatusBubble* GetStatusBubble(); |
| 251 virtual void SelectedTabToolbarSizeChanged(bool is_animating); | 252 virtual void SelectedTabToolbarSizeChanged(bool is_animating); |
| 252 virtual void SelectedTabExtensionShelfSizeChanged(); | 253 virtual void SelectedTabExtensionShelfSizeChanged(); |
| 253 virtual void UpdateTitleBar(); | 254 virtual void UpdateTitleBar(); |
| 254 virtual void ShelfVisibilityChanged(); | 255 virtual void ShelfVisibilityChanged(); |
| 255 virtual void UpdateDevTools(); | 256 virtual void UpdateDevTools(); |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 ExtensionShelf* extension_shelf_; | 574 ExtensionShelf* extension_shelf_; |
| 574 | 575 |
| 575 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 576 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
| 576 | 577 |
| 577 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; | 578 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; |
| 578 | 579 |
| 579 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 580 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 580 }; | 581 }; |
| 581 | 582 |
| 582 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 583 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |