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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 virtual void HideInstant() OVERRIDE; | 319 virtual void HideInstant() OVERRIDE; |
316 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 320 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
317 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 321 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
318 const gfx::Rect& bounds) OVERRIDE; | 322 const gfx::Rect& bounds) OVERRIDE; |
319 virtual FindBar* CreateFindBar() OVERRIDE; | 323 virtual FindBar* CreateFindBar() OVERRIDE; |
320 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 324 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
321 const gfx::Rect& rect) OVERRIDE; | 325 const gfx::Rect& rect) OVERRIDE; |
322 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 326 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
323 virtual void ShowPasswordGenerationBubble( | 327 virtual void ShowPasswordGenerationBubble( |
324 const gfx::Rect& rect, | 328 const gfx::Rect& rect, |
| 329 autofill::PasswordGenerator* password_generator, |
325 const webkit::forms::PasswordForm& form) OVERRIDE; | 330 const webkit::forms::PasswordForm& form) OVERRIDE; |
326 | 331 |
327 // Overridden from BrowserWindowTesting: | 332 // Overridden from BrowserWindowTesting: |
328 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 333 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
329 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 334 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
330 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 335 virtual views::View* GetTabContentsContainerView() const OVERRIDE; |
331 virtual ToolbarView* GetToolbarView() const OVERRIDE; | 336 virtual ToolbarView* GetToolbarView() const OVERRIDE; |
332 | 337 |
333 // Overridden from TabStripModelObserver: | 338 // Overridden from TabStripModelObserver: |
334 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE; | 339 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE; |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
678 bool force_location_bar_focus_; | 683 bool force_location_bar_focus_; |
679 | 684 |
680 PendingFullscreenRequest fullscreen_request_; | 685 PendingFullscreenRequest fullscreen_request_; |
681 | 686 |
682 gfx::ScopedSysColorChangeListener color_change_listener_; | 687 gfx::ScopedSysColorChangeListener color_change_listener_; |
683 | 688 |
684 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 689 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
685 }; | 690 }; |
686 | 691 |
687 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 692 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |