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

Unified Diff: chrome/browser/ui/autofill/generated_credit_card_bubble.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: compile 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/autofill/generated_credit_card_bubble.cc
diff --git a/chrome/browser/ui/autofill/generated_credit_card_bubble.cc b/chrome/browser/ui/autofill/generated_credit_card_bubble.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5b2ab23ee36176e6f541b389760b11d88c3ce242
--- /dev/null
+++ b/chrome/browser/ui/autofill/generated_credit_card_bubble.cc
@@ -0,0 +1,23 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
Evan Stade 2013/08/06 22:06:25 any differences to this file (and related files) b
Dan Beam 2013/08/07 02:30:22 not really, no IsHiding() or kContentWidth in NewC
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/autofill/generated_credit_card_bubble.h"
+
+namespace autofill {
+
+// static
+const int GeneratedCreditCardBubble::kContentWidth = 300;
+
+GeneratedCreditCardBubble::~GeneratedCreditCardBubble() {}
+
+#if !defined(TOOLKIT_VIEWS)
+// static
+base::WeakPtr<GeneratedCreditCardBubble> GeneratedCreditCardBubble::Create(
+ const base::WeakPtr<GeneratedCreditCardBubbleController>& controller) {
+ // TODO(dbeam): make a bubble on all applicable platforms.
+ return base::WeakPtr<GeneratedCreditCardBubble>();
+}
+#endif
+
+} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698