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

Unified Diff: chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h

Issue 1303733002: rAc Wallet extirpation, round 2: remove generated card bubble code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another reference Created 5 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/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_

Powered by Google App Engine
This is Rietveld 408576698