| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 354 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
| 355 virtual void ShowCreateChromeAppShortcutsDialog( | 355 virtual void ShowCreateChromeAppShortcutsDialog( |
| 356 Profile*, const extensions::Extension* app) OVERRIDE; | 356 Profile*, const extensions::Extension* app) OVERRIDE; |
| 357 virtual void Cut() OVERRIDE; | 357 virtual void Cut() OVERRIDE; |
| 358 virtual void Copy() OVERRIDE; | 358 virtual void Copy() OVERRIDE; |
| 359 virtual void Paste() OVERRIDE; | 359 virtual void Paste() OVERRIDE; |
| 360 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 360 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 361 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 361 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 362 const gfx::Rect& bounds) OVERRIDE; | 362 const gfx::Rect& bounds) OVERRIDE; |
| 363 virtual FindBar* CreateFindBar() OVERRIDE; | 363 virtual FindBar* CreateFindBar() OVERRIDE; |
| 364 virtual WebContentsModalDialogHost* | 364 virtual web_modal::WebContentsModalDialogHost* |
| 365 GetWebContentsModalDialogHost() OVERRIDE; | 365 GetWebContentsModalDialogHost() OVERRIDE; |
| 366 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 366 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 367 const gfx::Rect& rect) OVERRIDE; | 367 const gfx::Rect& rect) OVERRIDE; |
| 368 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 368 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 369 virtual void ShowPasswordGenerationBubble( | 369 virtual void ShowPasswordGenerationBubble( |
| 370 const gfx::Rect& rect, | 370 const gfx::Rect& rect, |
| 371 const content::PasswordForm& form, | 371 const content::PasswordForm& form, |
| 372 autofill::PasswordGenerator* password_generator) OVERRIDE; | 372 autofill::PasswordGenerator* password_generator) OVERRIDE; |
| 373 | 373 |
| 374 // Overridden from BrowserWindowTesting: | 374 // Overridden from BrowserWindowTesting: |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 gfx::ScopedSysColorChangeListener color_change_listener_; | 777 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 778 | 778 |
| 779 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 779 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
| 780 | 780 |
| 781 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 781 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 782 | 782 |
| 783 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 783 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 784 }; | 784 }; |
| 785 | 785 |
| 786 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 786 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |