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

Unified Diff: chrome/browser/ui/views/autofill/new_credit_card_bubble_views.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/autofill/new_credit_card_bubble_views.h
diff --git a/chrome/browser/ui/views/autofill/new_credit_card_bubble_views.h b/chrome/browser/ui/views/autofill/new_credit_card_bubble_views.h
new file mode 100644
index 0000000000000000000000000000000000000000..fe572465ed5d54283214e77a1dbd908f348a33a2
--- /dev/null
+++ b/chrome/browser/ui/views/autofill/new_credit_card_bubble_views.h
@@ -0,0 +1,56 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_VIEWS_H_
+#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_VIEWS_H_
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/memory/weak_ptr.h"
+#include "chrome/browser/ui/autofill/new_credit_card_bubble_view.h"
+#include "ui/views/bubble/bubble_delegate.h"
+#include "ui/views/controls/link_listener.h"
+
+namespace autofill {
+
+class NewCreditCardBubbleController;
+
+// Views toolkit implementation of NewCreditCardBubbleView (a bubble shown after
+// a user saved a new card locally in Chrome).
+class NewCreditCardBubbleViews : public NewCreditCardBubbleView,
+ public views::BubbleDelegateView,
+ public views::LinkListener {
+ public:
+ virtual ~NewCreditCardBubbleViews();
+
+ // NewCreditCardBubbleView:
+ virtual void Show() OVERRIDE;
+ virtual void Hide() OVERRIDE;
+
+ // views::BubbleDelegateView:
+ virtual gfx::Size GetPreferredSize() OVERRIDE;
+ virtual base::string16 GetWindowTitle() const OVERRIDE;
+ virtual void Init() OVERRIDE;
+
+ // views::LinkListener:
+ virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
+
+ private:
+ friend base::WeakPtr<NewCreditCardBubbleView> NewCreditCardBubbleView::Create(
+ NewCreditCardBubbleController* controller);
+
+ explicit NewCreditCardBubbleViews(
+ NewCreditCardBubbleController* controller);
+
+ // Controller that drives this bubble. Never NULL; outlives this class.
+ NewCreditCardBubbleController* controller_;
+
+ base::WeakPtrFactory<NewCreditCardBubbleView> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(NewCreditCardBubbleViews);
+};
+
+} // namespace autofill
+
+#endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_VIEWS_H_

Powered by Google App Engine
This is Rietveld 408576698