| Index: chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h
|
| diff --git a/chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h b/chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h
|
| deleted file mode 100644
|
| index 16358bb4841fd56f29a294f94e3e36b6900e7b91..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h
|
| +++ /dev/null
|
| @@ -1,51 +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_AUTOFILL_TEST_GENERATED_CREDIT_CARD_BUBBLE_CONTROLLER_H_
|
| -#define CHROME_BROWSER_UI_AUTOFILL_TEST_GENERATED_CREDIT_CARD_BUBBLE_CONTROLLER_H_
|
| -
|
| -#include "base/basictypes.h"
|
| -#include "base/compiler_specific.h"
|
| -#include "chrome/browser/ui/autofill/generated_credit_card_bubble_controller.h"
|
| -
|
| -namespace autofill {
|
| -
|
| -class TestGeneratedCreditCardBubbleView;
|
| -
|
| -class TestGeneratedCreditCardBubbleController
|
| - : public GeneratedCreditCardBubbleController {
|
| - public:
|
| - explicit TestGeneratedCreditCardBubbleController(
|
| - content::WebContents* contents);
|
| - ~TestGeneratedCreditCardBubbleController() override;
|
| -
|
| - // Whether this controller is installed on |web_contents()|.
|
| - bool IsInstalled() const;
|
| -
|
| - // Get an invisible, dumb, test-only bubble.
|
| - TestGeneratedCreditCardBubbleView* GetTestingBubble();
|
| -
|
| - // Made public for testing.
|
| - using GeneratedCreditCardBubbleController::fronting_card_name;
|
| - using GeneratedCreditCardBubbleController::backing_card_name;
|
| -
|
| - int bubbles_shown() const { return bubbles_shown_; }
|
| -
|
| - protected:
|
| - // GeneratedCreditCardBubbleController:
|
| - base::WeakPtr<GeneratedCreditCardBubbleView> CreateBubble() override;
|
| - bool CanShow() const override;
|
| - void SetupAndShow(const base::string16& fronting_card_name,
|
| - const base::string16& backing_card_name) override;
|
| -
|
| - private:
|
| - // How many bubbles have been shown via this controller.
|
| - int bubbles_shown_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(TestGeneratedCreditCardBubbleController);
|
| -};
|
| -
|
| -} // namespace autofill
|
| -
|
| -#endif // CHROME_BROWSER_UI_AUTOFILL_TEST_GENERATED_CREDIT_CARD_BUBBLE_CONTROLLER_H_
|
|
|