Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(851)

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 10458018: This CL does the following: (1) Pass the max_length attribute to the password generator; (2) Update… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a bug in Windows UI. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 virtual void Paste() OVERRIDE; 311 virtual void Paste() OVERRIDE;
312 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; 312 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE;
313 virtual void HideInstant() OVERRIDE; 313 virtual void HideInstant() OVERRIDE;
314 virtual gfx::Rect GetInstantBounds() OVERRIDE; 314 virtual gfx::Rect GetInstantBounds() OVERRIDE;
315 virtual WindowOpenDisposition GetDispositionForPopupBounds( 315 virtual WindowOpenDisposition GetDispositionForPopupBounds(
316 const gfx::Rect& bounds) OVERRIDE; 316 const gfx::Rect& bounds) OVERRIDE;
317 virtual FindBar* CreateFindBar() OVERRIDE; 317 virtual FindBar* CreateFindBar() OVERRIDE;
318 virtual void ShowAvatarBubble(content::WebContents* web_contents, 318 virtual void ShowAvatarBubble(content::WebContents* web_contents,
319 const gfx::Rect& rect) OVERRIDE; 319 const gfx::Rect& rect) OVERRIDE;
320 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; 320 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE;
321 virtual void ShowPasswordGenerationBubble(const gfx::Rect& rect) OVERRIDE; 321 virtual void ShowPasswordGenerationBubble(const gfx::Rect& rect,
322 int max_length) OVERRIDE;
322 323
323 // Overridden from BrowserWindowTesting: 324 // Overridden from BrowserWindowTesting:
324 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; 325 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE;
325 virtual LocationBarView* GetLocationBarView() const OVERRIDE; 326 virtual LocationBarView* GetLocationBarView() const OVERRIDE;
326 virtual views::View* GetTabContentsContainerView() const OVERRIDE; 327 virtual views::View* GetTabContentsContainerView() const OVERRIDE;
327 virtual ToolbarView* GetToolbarView() const OVERRIDE; 328 virtual ToolbarView* GetToolbarView() const OVERRIDE;
328 329
329 // Overridden from TabStripModelObserver: 330 // Overridden from TabStripModelObserver:
330 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE; 331 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE;
331 virtual void TabDeactivated(TabContentsWrapper* contents) OVERRIDE; 332 virtual void TabDeactivated(TabContentsWrapper* contents) OVERRIDE;
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 bool force_location_bar_focus_; 675 bool force_location_bar_focus_;
675 676
676 PendingFullscreenRequest fullscreen_request_; 677 PendingFullscreenRequest fullscreen_request_;
677 678
678 gfx::ScopedSysColorChangeListener color_change_listener_; 679 gfx::ScopedSysColorChangeListener color_change_listener_;
679 680
680 DISALLOW_COPY_AND_ASSIGN(BrowserView); 681 DISALLOW_COPY_AND_ASSIGN(BrowserView);
681 }; 682 };
682 683
683 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 684 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698