| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 const content::NativeWebKeyboardEvent& event, | 339 const content::NativeWebKeyboardEvent& event, |
| 340 bool* is_keyboard_shortcut) OVERRIDE; | 340 bool* is_keyboard_shortcut) OVERRIDE; |
| 341 virtual void HandleKeyboardEvent( | 341 virtual void HandleKeyboardEvent( |
| 342 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 342 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
| 343 virtual void ShowCreateChromeAppShortcutsDialog( | 343 virtual void ShowCreateChromeAppShortcutsDialog( |
| 344 Profile*, const extensions::Extension* app) OVERRIDE; | 344 Profile*, const extensions::Extension* app) OVERRIDE; |
| 345 virtual void Cut() OVERRIDE; | 345 virtual void Cut() OVERRIDE; |
| 346 virtual void Copy() OVERRIDE; | 346 virtual void Copy() OVERRIDE; |
| 347 virtual void Paste() OVERRIDE; | 347 virtual void Paste() OVERRIDE; |
| 348 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 348 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 349 #if defined(USE_ASH) |
| 350 virtual bool IsImmersiveMode() const OVERRIDE; |
| 351 #endif |
| 349 virtual bool IsInstantTabShowing() OVERRIDE; | 352 virtual bool IsInstantTabShowing() OVERRIDE; |
| 350 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 353 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 351 const gfx::Rect& bounds) OVERRIDE; | 354 const gfx::Rect& bounds) OVERRIDE; |
| 352 virtual FindBar* CreateFindBar() OVERRIDE; | 355 virtual FindBar* CreateFindBar() OVERRIDE; |
| 353 virtual bool GetConstrainedWindowTopY(int* top_y) OVERRIDE; | 356 virtual bool GetConstrainedWindowTopY(int* top_y) OVERRIDE; |
| 354 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 357 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 355 const gfx::Rect& rect) OVERRIDE; | 358 const gfx::Rect& rect) OVERRIDE; |
| 356 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 359 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 357 virtual void ShowPasswordGenerationBubble( | 360 virtual void ShowPasswordGenerationBubble( |
| 358 const gfx::Rect& rect, | 361 const gfx::Rect& rect, |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 gfx::ScopedSysColorChangeListener color_change_listener_; | 756 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 754 | 757 |
| 755 scoped_ptr<InstantPreviewControllerViews> preview_controller_; | 758 scoped_ptr<InstantPreviewControllerViews> preview_controller_; |
| 756 | 759 |
| 757 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 760 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 758 | 761 |
| 759 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 762 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 760 }; | 763 }; |
| 761 | 764 |
| 762 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 765 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |