| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 349 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
| 350 virtual void ShowCreateChromeAppShortcutsDialog( | 350 virtual void ShowCreateChromeAppShortcutsDialog( |
| 351 Profile*, const extensions::Extension* app) OVERRIDE; | 351 Profile*, const extensions::Extension* app) OVERRIDE; |
| 352 virtual void Cut() OVERRIDE; | 352 virtual void Cut() OVERRIDE; |
| 353 virtual void Copy() OVERRIDE; | 353 virtual void Copy() OVERRIDE; |
| 354 virtual void Paste() OVERRIDE; | 354 virtual void Paste() OVERRIDE; |
| 355 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 355 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 356 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 356 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 357 const gfx::Rect& bounds) OVERRIDE; | 357 const gfx::Rect& bounds) OVERRIDE; |
| 358 virtual FindBar* CreateFindBar() OVERRIDE; | 358 virtual FindBar* CreateFindBar() OVERRIDE; |
| 359 virtual WebContentsModalDialogHost* | 359 virtual web_modal::WebContentsModalDialogHost* |
| 360 GetWebContentsModalDialogHost() OVERRIDE; | 360 GetWebContentsModalDialogHost() OVERRIDE; |
| 361 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 361 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 362 const gfx::Rect& rect) OVERRIDE; | 362 const gfx::Rect& rect) OVERRIDE; |
| 363 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 363 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 364 virtual void ShowPasswordGenerationBubble( | 364 virtual void ShowPasswordGenerationBubble( |
| 365 const gfx::Rect& rect, | 365 const gfx::Rect& rect, |
| 366 const content::PasswordForm& form, | 366 const content::PasswordForm& form, |
| 367 autofill::PasswordGenerator* password_generator) OVERRIDE; | 367 autofill::PasswordGenerator* password_generator) OVERRIDE; |
| 368 | 368 |
| 369 // Overridden from BrowserWindowTesting: | 369 // Overridden from BrowserWindowTesting: |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 gfx::ScopedSysColorChangeListener color_change_listener_; | 748 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 749 | 749 |
| 750 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 750 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
| 751 | 751 |
| 752 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 752 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 753 | 753 |
| 754 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 754 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 755 }; | 755 }; |
| 756 | 756 |
| 757 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 757 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |