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

Unified Diff: chrome/browser/ui/views/autofill/autofill_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/autofill_credit_card_bubble_views.h
diff --git a/chrome/browser/ui/views/autofill/autofill_credit_card_bubble_views.h b/chrome/browser/ui/views/autofill/autofill_credit_card_bubble_views.h
deleted file mode 100644
index 9d8e8f18cb8de258a7a8ada8c127fc1f70a3f618..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/autofill/autofill_credit_card_bubble_views.h
+++ /dev/null
@@ -1,58 +0,0 @@
-// 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_AUTOFILL_CREDIT_CARD_BUBBLE_VIEWS_H_
-#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_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/autofill_credit_card_bubble.h"
-#include "ui/views/bubble/bubble_delegate.h"
-#include "ui/views/controls/link_listener.h"
-
-namespace autofill {
-
-class AutofillCreditCardBubbleController;
-
-// Views toolkit implementation of AutofillCreditCard bubble (an educational
-// bubble shown after a successful submission of the Autofill dialog).
-class AutofillCreditCardBubbleViews : public AutofillCreditCardBubble,
- public views::BubbleDelegateView,
- public views::LinkListener {
- public:
- virtual ~AutofillCreditCardBubbleViews();
-
- // AutofillCreditCardBubble:
- virtual void Show() OVERRIDE;
- virtual void Hide() OVERRIDE;
- virtual bool IsHiding() const OVERRIDE;
-
- // views::BubbleDelegateView:
- virtual string16 GetWindowTitle() const OVERRIDE;
- virtual void Init() OVERRIDE;
- virtual gfx::Size GetPreferredSize() OVERRIDE;
-
- // views::LinkListener:
- virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
-
- private:
- friend base::WeakPtr<AutofillCreditCardBubble>
- AutofillCreditCardBubble::Create(
- const base::WeakPtr<AutofillCreditCardBubbleController>& controller);
-
- explicit AutofillCreditCardBubbleViews(
- const base::WeakPtr<AutofillCreditCardBubbleController>& controller);
-
- // Controller that drives this bubble. Invalid when hiding.
- base::WeakPtr<AutofillCreditCardBubbleController> controller_;
-
- base::WeakPtrFactory<AutofillCreditCardBubble> weak_ptr_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(AutofillCreditCardBubbleViews);
-};
-
-} // namespace autofill
-
-#endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_CREDIT_CARD_BUBBLE_VIEWS_H_
« no previous file with comments | « chrome/browser/ui/omnibox/location_bar.h ('k') | chrome/browser/ui/views/autofill/autofill_credit_card_bubble_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698