| Index: chrome/browser/ui/autofill/new_credit_card_bubble.cc
|
| diff --git a/chrome/browser/ui/autofill/new_credit_card_bubble.cc b/chrome/browser/ui/autofill/new_credit_card_bubble.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..80909723be3f68d5f5b39f58982e13b96b54a03e
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/autofill/new_credit_card_bubble.cc
|
| @@ -0,0 +1,23 @@
|
| +// 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.
|
| +
|
| +#include "chrome/browser/ui/autofill/new_credit_card_bubble.h"
|
| +
|
| +namespace autofill {
|
| +
|
| +// static
|
| +const int NewCreditCardBubble::kContentWidth = 300;
|
| +
|
| +NewCreditCardBubble::~NewCreditCardBubble() {}
|
| +
|
| +#if !defined(TOOLKIT_VIEWS)
|
| +// static
|
| +base::WeakPtr<NewCreditCardBubble> NewCreditCardBubble::Create(
|
| + const base::WeakPtr<NewCreditCardBubbleController>& controller) {
|
| + // TODO(dbeam): make a bubble on all applicable platforms.
|
| + return base::WeakPtr<NewCreditCardBubble>();
|
| +}
|
| +#endif
|
| +
|
| +} // namespace autofill
|
|
|