| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_AUTOFILL_AUTOCHECKOUT_MANAGER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_MANAGER_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "chrome/browser/autofill/autocheckout_page_meta_data.h" | 13 #include "components/autofill/browser/autocheckout_page_meta_data.h" |
| 14 #include "ui/gfx/native_widget_types.h" | 14 #include "ui/gfx/native_widget_types.h" |
| 15 | 15 |
| 16 class AutofillField; | 16 class AutofillField; |
| 17 class AutofillManager; | 17 class AutofillManager; |
| 18 class AutofillProfile; | 18 class AutofillProfile; |
| 19 class CreditCard; | 19 class CreditCard; |
| 20 class FormStructure; | 20 class FormStructure; |
| 21 class GURL; | 21 class GURL; |
| 22 | 22 |
| 23 struct FormData; | 23 struct FormData; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 // Whether or not the user is in an Autocheckout flow. | 107 // Whether or not the user is in an Autocheckout flow. |
| 108 bool in_autocheckout_flow_; | 108 bool in_autocheckout_flow_; |
| 109 | 109 |
| 110 base::WeakPtrFactory<AutocheckoutManager> weak_ptr_factory_; | 110 base::WeakPtrFactory<AutocheckoutManager> weak_ptr_factory_; |
| 111 | 111 |
| 112 DISALLOW_COPY_AND_ASSIGN(AutocheckoutManager); | 112 DISALLOW_COPY_AND_ASSIGN(AutocheckoutManager); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace autofill | 115 } // namespace autofill |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_MANAGER_H_ | 117 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ |
| OLD | NEW |