| 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..9ed4e2c8bd702d87bc5465119a5f22b0e4327f47
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/autofill/new_credit_card_bubble.cc
|
| @@ -0,0 +1,20 @@
|
| +// 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 {
|
| +
|
| +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
|
|
|