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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 class ToolbarView; | 51 class ToolbarView; |
52 | 52 |
53 #if defined(OS_WIN) | 53 #if defined(OS_WIN) |
54 class JumpList; | 54 class JumpList; |
55 #endif | 55 #endif |
56 | 56 |
57 #if defined(USE_AURA) | 57 #if defined(USE_AURA) |
58 class BrowserLauncherItemController; | 58 class BrowserLauncherItemController; |
59 #endif | 59 #endif |
60 | 60 |
| 61 namespace autofill { |
| 62 class PasswordGenerator; |
| 63 } |
| 64 |
61 namespace extensions { | 65 namespace extensions { |
62 class Extension; | 66 class Extension; |
63 } | 67 } |
64 | 68 |
65 namespace views { | 69 namespace views { |
66 class AccessiblePaneView; | 70 class AccessiblePaneView; |
67 class ExternalFocusTracker; | 71 class ExternalFocusTracker; |
68 class WebView; | 72 class WebView; |
69 } | 73 } |
70 | 74 |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 virtual void Paste() OVERRIDE; | 315 virtual void Paste() OVERRIDE; |
312 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; | 316 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; |
313 virtual void HideInstant() OVERRIDE; | 317 virtual void HideInstant() OVERRIDE; |
314 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 318 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
315 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 319 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
316 const gfx::Rect& bounds) OVERRIDE; | 320 const gfx::Rect& bounds) OVERRIDE; |
317 virtual FindBar* CreateFindBar() OVERRIDE; | 321 virtual FindBar* CreateFindBar() OVERRIDE; |
318 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 322 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
319 const gfx::Rect& rect) OVERRIDE; | 323 const gfx::Rect& rect) OVERRIDE; |
320 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 324 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
321 virtual void ShowPasswordGenerationBubble(const gfx::Rect& rect) OVERRIDE; | 325 virtual void ShowPasswordGenerationBubble( |
| 326 const gfx::Rect& rect, |
| 327 const autofill::PasswordGenerator& password_generator) OVERRIDE; |
322 | 328 |
323 // Overridden from BrowserWindowTesting: | 329 // Overridden from BrowserWindowTesting: |
324 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 330 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
325 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 331 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
326 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 332 virtual views::View* GetTabContentsContainerView() const OVERRIDE; |
327 virtual ToolbarView* GetToolbarView() const OVERRIDE; | 333 virtual ToolbarView* GetToolbarView() const OVERRIDE; |
328 | 334 |
329 // Overridden from TabStripModelObserver: | 335 // Overridden from TabStripModelObserver: |
330 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE; | 336 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE; |
331 virtual void TabDeactivated(TabContentsWrapper* contents) OVERRIDE; | 337 virtual void TabDeactivated(TabContentsWrapper* contents) OVERRIDE; |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 bool force_location_bar_focus_; | 680 bool force_location_bar_focus_; |
675 | 681 |
676 PendingFullscreenRequest fullscreen_request_; | 682 PendingFullscreenRequest fullscreen_request_; |
677 | 683 |
678 gfx::ScopedSysColorChangeListener color_change_listener_; | 684 gfx::ScopedSysColorChangeListener color_change_listener_; |
679 | 685 |
680 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 686 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
681 }; | 687 }; |
682 | 688 |
683 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 689 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |