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

Unified Diff: chrome/browser/ui/views/location_bar/location_bar_view.h

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: merge 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/location_bar/location_bar_view.h
diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.h b/chrome/browser/ui/views/location_bar/location_bar_view.h
index d9e50db3f37f4fe399511420c8e021dcef1eb409..d109c41513d93a9acce615ed95092a80d67f0add 100644
--- a/chrome/browser/ui/views/location_bar/location_bar_view.h
+++ b/chrome/browser/ui/views/location_bar/location_bar_view.h
@@ -32,13 +32,13 @@
#endif
class ActionBoxButtonView;
-class AutofillCreditCardView;
class CommandUpdater;
class ContentSettingBubbleModelDelegate;
class ContentSettingImageView;
class EVBubbleView;
class ExtensionAction;
class GURL;
+class GeneratedCreditCardView;
class InstantController;
class KeywordHintView;
class LocationIconView;
@@ -245,7 +245,7 @@ class LocationBarView : public LocationBar,
views::View* location_entry_view() const { return location_entry_view_; }
- views::View* autofill_credit_card_view();
+ views::View* generated_credit_card_view();
// OmniboxEditController:
virtual void OnAutocompleteAccept(const GURL& url,
@@ -296,7 +296,7 @@ class LocationBarView : public LocationBar,
virtual void UpdatePageActions() OVERRIDE;
virtual void InvalidatePageActions() OVERRIDE;
virtual void UpdateOpenPDFInReaderPrompt() OVERRIDE;
- virtual void UpdateAutofillCreditCardView() OVERRIDE;
+ virtual void UpdateGeneratedCreditCardView() OVERRIDE;
virtual void SaveStateToContents(content::WebContents* contents) OVERRIDE;
virtual void Revert() OVERRIDE;
virtual const OmniboxView* GetLocationEntry() const OVERRIDE;
@@ -482,8 +482,8 @@ class LocationBarView : public LocationBar,
// The zoom icon.
ZoomView* zoom_view_;
- // A bubble that shows after successful submission of the Autofill dialog.
- AutofillCreditCardView* autofill_credit_card_view_;
+ // A bubble that shows after successfully generating a new credit card number.
+ GeneratedCreditCardView* generated_credit_card_view_;
// The icon to open a PDF in Reader.
OpenPDFInReaderView* open_pdf_in_reader_view_;

Powered by Google App Engine
This is Rietveld 408576698