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

Side by Side Diff: chrome/browser/ui/views/autofill/generated_credit_card_bubble_views.h

Issue 273223002: views: Make view::Views::GetPreferredSize() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More compile fix for ToT Created 6 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_AUTOFILL_GENERATED_CREDIT_CARD_BUBBLE_VIEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_GENERATED_CREDIT_CARD_BUBBLE_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_GENERATED_CREDIT_CARD_BUBBLE_VIEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_GENERATED_CREDIT_CARD_BUBBLE_VIEWS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 13 matching lines...) Expand all
24 public views::StyledLabelListener { 24 public views::StyledLabelListener {
25 public: 25 public:
26 virtual ~GeneratedCreditCardBubbleViews(); 26 virtual ~GeneratedCreditCardBubbleViews();
27 27
28 // GeneratedCreditCardBubbleView: 28 // GeneratedCreditCardBubbleView:
29 virtual void Show() OVERRIDE; 29 virtual void Show() OVERRIDE;
30 virtual void Hide() OVERRIDE; 30 virtual void Hide() OVERRIDE;
31 virtual bool IsHiding() const OVERRIDE; 31 virtual bool IsHiding() const OVERRIDE;
32 32
33 // views::BubbleDelegateView: 33 // views::BubbleDelegateView:
34 virtual gfx::Size GetPreferredSize() OVERRIDE; 34 virtual gfx::Size GetPreferredSize() const OVERRIDE;
35 virtual base::string16 GetWindowTitle() const OVERRIDE; 35 virtual base::string16 GetWindowTitle() const OVERRIDE;
36 virtual void Init() OVERRIDE; 36 virtual void Init() OVERRIDE;
37 37
38 // views::StyledLabelListener: 38 // views::StyledLabelListener:
39 virtual void StyledLabelLinkClicked(const gfx::Range& range, int event_flags) 39 virtual void StyledLabelLinkClicked(const gfx::Range& range, int event_flags)
40 OVERRIDE; 40 OVERRIDE;
41 41
42 private: 42 private:
43 friend base::WeakPtr<GeneratedCreditCardBubbleView> 43 friend base::WeakPtr<GeneratedCreditCardBubbleView>
44 GeneratedCreditCardBubbleView::Create( 44 GeneratedCreditCardBubbleView::Create(
45 const base::WeakPtr<GeneratedCreditCardBubbleController>& controller); 45 const base::WeakPtr<GeneratedCreditCardBubbleController>& controller);
46 46
47 explicit GeneratedCreditCardBubbleViews( 47 explicit GeneratedCreditCardBubbleViews(
48 const base::WeakPtr<GeneratedCreditCardBubbleController>& controller); 48 const base::WeakPtr<GeneratedCreditCardBubbleController>& controller);
49 49
50 // Controller that drives this bubble. May be invalid when hiding. 50 // Controller that drives this bubble. May be invalid when hiding.
51 base::WeakPtr<GeneratedCreditCardBubbleController> controller_; 51 base::WeakPtr<GeneratedCreditCardBubbleController> controller_;
52 52
53 base::WeakPtrFactory<GeneratedCreditCardBubbleViews> weak_ptr_factory_; 53 base::WeakPtrFactory<GeneratedCreditCardBubbleViews> weak_ptr_factory_;
54 54
55 DISALLOW_COPY_AND_ASSIGN(GeneratedCreditCardBubbleViews); 55 DISALLOW_COPY_AND_ASSIGN(GeneratedCreditCardBubbleViews);
56 }; 56 };
57 57
58 } // namespace autofill 58 } // namespace autofill
59 59
60 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_GENERATED_CREDIT_CARD_BUBBLE_VIEWS_H _ 60 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_GENERATED_CREDIT_CARD_BUBBLE_VIEWS_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698