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

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

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_
7 7
8 #include <memory>
8 #include <vector> 9 #include <vector>
9 10
10 #include "base/macros.h" 11 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 #include "components/autofill/core/browser/legal_message_line.h" 13 #include "components/autofill/core/browser/legal_message_line.h"
14 #include "url/gurl.h" 14 #include "url/gurl.h"
15 15
16 namespace autofill { 16 namespace autofill {
17 17
18 class CreditCard; 18 class CreditCard;
19 class SaveCardBubbleView; 19 class SaveCardBubbleView;
20 20
21 // Interface that exposes controller functionality to SaveCardBubbleView. 21 // Interface that exposes controller functionality to SaveCardBubbleView.
(...skipping 24 matching lines...) Expand all
46 protected: 46 protected:
47 SaveCardBubbleController() {} 47 SaveCardBubbleController() {}
48 virtual ~SaveCardBubbleController() {} 48 virtual ~SaveCardBubbleController() {}
49 49
50 DISALLOW_COPY_AND_ASSIGN(SaveCardBubbleController); 50 DISALLOW_COPY_AND_ASSIGN(SaveCardBubbleController);
51 }; 51 };
52 52
53 } // namespace autofill 53 } // namespace autofill
54 54
55 #endif // CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_ 55 #endif // CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698