| 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 COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ |
| 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| 15 #include "components/autofill/browser/autocheckout_page_meta_data.h" | 15 #include "components/autofill/browser/autocheckout_page_meta_data.h" |
| 16 #include "components/autofill/common/autocheckout_status.h" | 16 #include "components/autofill/common/autocheckout_status.h" |
| 17 | 17 |
| 18 class GURL; | 18 class GURL; |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 struct SSLStatus; | 21 struct SSLStatus; |
| 22 } | 22 } |
| 23 | 23 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 base::WeakPtrFactory<AutocheckoutManager> weak_ptr_factory_; | 151 base::WeakPtrFactory<AutocheckoutManager> weak_ptr_factory_; |
| 152 | 152 |
| 153 base::ThreadChecker thread_checker_; | 153 base::ThreadChecker thread_checker_; |
| 154 | 154 |
| 155 DISALLOW_COPY_AND_ASSIGN(AutocheckoutManager); | 155 DISALLOW_COPY_AND_ASSIGN(AutocheckoutManager); |
| 156 }; | 156 }; |
| 157 | 157 |
| 158 } // namespace autofill | 158 } // namespace autofill |
| 159 | 159 |
| 160 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ | 160 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_MANAGER_H_ |
| OLD | NEW |