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

Side by Side Diff: chrome/browser/ui/autofill/save_card_bubble_controller.h

Issue 1396923003: Autofill: Replace "save credit card" infobar with a bubble (Views only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: defined(TOOLKIT_VIEWS) -> defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX). Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_
7
8 #include "base/macros.h"
9
10 namespace autofill {
11
12 class SaveCardBubbleView;
13
14 // Interface that exposes controller functionality to SaveCardBubbleView.
15 class SaveCardBubbleController {
16 public:
17 virtual void OnSaveButton() = 0;
18 virtual void OnCancelButton() = 0;
19 virtual void OnBubbleClosed() = 0;
20
21 protected:
22 SaveCardBubbleController() {}
23 virtual ~SaveCardBubbleController() {}
24
25 DISALLOW_COPY_AND_ASSIGN(SaveCardBubbleController);
26 };
27
28 } // namespace autofill
29
30 #endif // CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/chrome_autofill_client.cc ('k') | chrome/browser/ui/autofill/save_card_bubble_controller_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698