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

Side by Side Diff: chrome/browser/ui/autofill/new_credit_card_bubble_controller.cc

Issue 21668003: Implement newly saved card bubble for realz and update generated card bubble to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 4 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/autofill/new_credit_card_bubble_controller.h"
6
7 #include <string>
8
9 #include "base/logging.h"
10 #include "base/strings/utf_string_conversions.h"
11 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/browser/ui/autofill/data_model_wrapper.h"
14 #include "chrome/browser/ui/autofill/new_credit_card_bubble.h"
15 #include "chrome/browser/ui/browser_finder.h"
16 #include "chrome/browser/ui/chrome_pages.h"
17 #include "chrome/browser/ui/host_desktop.h"
18 #include "chrome/common/url_constants.h"
19 #include "components/autofill/core/browser/autofill_profile.h"
20 #include "components/autofill/core/browser/credit_card.h"
21 #include "grit/chromium_strings.h"
22 #include "grit/generated_resources.h"
23 #include "grit/theme_resources.h"
24 #include "ui/base/l10n/l10n_util.h"
25 #include "ui/base/resource/resource_bundle.h"
26
27 namespace autofill {
28
29 namespace {
30
31 static const int kMaxGeneratedCardTimesToShow = 5;
32 static const char kWalletGeneratedCardLearnMoreLink[] =
33 "http://support.google.com/wallet/bin/answer.py?hl=en&answer=2740044";
34
35 } // namespace
36
37 CreditCardDescription::CreditCardDescription() {}
38 CreditCardDescription::~CreditCardDescription() {}
39
40 NewCreditCardBubbleController::~NewCreditCardBubbleController() {
41 Hide();
42 }
43
44 // static
45 void NewCreditCardBubbleController::Show(
46 Profile* profile,
47 scoped_ptr<CreditCard> new_card,
48 scoped_ptr<AutofillProfile> billing_profile) {
49 (new NewCreditCardBubbleController(profile))->SetupAndShow(
50 new_card.Pass(),
51 billing_profile.Pass());
52 }
53
54 const base::string16& NewCreditCardBubbleController::TitleText() const {
55 return title_text_;
56 }
57
58 const CreditCardDescription& NewCreditCardBubbleController::CardDescription()
59 const {
60 return card_desc_;
61 }
62
63 const base::string16& NewCreditCardBubbleController::LinkText() const {
64 return link_text_;
65 }
66
67 void NewCreditCardBubbleController::OnBubbleDestroyed() {
68 delete this;
69 }
70
71 void NewCreditCardBubbleController::OnLinkClicked() {
72 Browser* browser = chrome::FindTabbedBrowser(profile_, false,
73 chrome::GetActiveDesktop());
74 if (browser)
75 chrome::ShowSettingsSubPage(browser, chrome::kAutofillSubPage);
76
77 Hide();
78 }
79
80 NewCreditCardBubbleController::NewCreditCardBubbleController(Profile* profile)
81 : profile_(profile),
82 title_text_(l10n_util::GetStringUTF16(
83 IDS_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_TITLE)),
84 link_text_(l10n_util::GetStringUTF16(
85 IDS_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_LINK)),
86 weak_ptr_factory_(this) {}
87
88 base::WeakPtr<NewCreditCardBubbleController>
89 NewCreditCardBubbleController::GetWeakPtr() {
90 return weak_ptr_factory_.GetWeakPtr();
91 }
92
93 base::WeakPtr<NewCreditCardBubble> NewCreditCardBubbleController::
94 CreateBubble() {
95 return NewCreditCardBubble::Create(GetWeakPtr());
96 }
97
98 base::WeakPtr<NewCreditCardBubble> NewCreditCardBubbleController::
99 bubble() {
100 return bubble_;
101 }
102
103 void NewCreditCardBubbleController::SetupAndShow(
104 scoped_ptr<CreditCard> new_card,
105 scoped_ptr<AutofillProfile> billing_profile) {
106 DCHECK(new_card);
107 DCHECK(billing_profile);
108
109 new_card_ = new_card.Pass();
110 billing_profile_ = billing_profile.Pass();
111
112 const base::string16 card_number =
113 new_card_->GetRawInfo(CREDIT_CARD_NUMBER);
114 ui::ResourceBundle& rb = ResourceBundle::GetSharedInstance();
115 card_desc_.icon = rb.GetImageNamed(
116 CreditCard::IconResourceId(CreditCard::GetCreditCardType(card_number)));
117 card_desc_.name = new_card_->TypeAndLastFourDigits();
118
119 AutofillProfileWrapper wrapper(billing_profile_.get(), 0);
120 card_desc_.description = wrapper.GetDisplayText();
121
122 bubble_ = CreateBubble();
123 if (!bubble_) {
124 // TODO(dbeam): Make a bubble on all applicable platforms.
125 delete this;
126 return;
127 }
128
129 bubble_->Show();
130 }
131
132 void NewCreditCardBubbleController::Hide() {
133 if (bubble_)
134 bubble_->Hide();
135 }
136
137 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698