| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WALLET_FULL_WALLET_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_WALLET_FULL_WALLET_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_WALLET_FULL_WALLET_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_WALLET_FULL_WALLET_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "chrome/browser/autofill/wallet/required_action.h" | 14 #include "components/autofill/browser/wallet/required_action.h" |
| 15 #include "chrome/browser/autofill/wallet/wallet_address.h" | 15 #include "components/autofill/browser/wallet/wallet_address.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class DictionaryValue; | 18 class DictionaryValue; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace autofill { | 21 namespace autofill { |
| 22 namespace wallet { | 22 namespace wallet { |
| 23 | 23 |
| 24 class FullWalletTest; | 24 class FullWalletTest; |
| 25 | 25 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 // The one time pad used for FullWallet encryption. | 112 // The one time pad used for FullWallet encryption. |
| 113 std::vector<uint8> one_time_pad_; | 113 std::vector<uint8> one_time_pad_; |
| 114 | 114 |
| 115 DISALLOW_COPY_AND_ASSIGN(FullWallet); | 115 DISALLOW_COPY_AND_ASSIGN(FullWallet); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace wallet | 118 } // namespace wallet |
| 119 } // namespace autofill | 119 } // namespace autofill |
| 120 | 120 |
| 121 #endif // CHROME_BROWSER_AUTOFILL_WALLET_FULL_WALLET_H_ | 121 #endif // COMPONENTS_AUTOFILL_BROWSER_WALLET_FULL_WALLET_H_ |
| OLD | NEW |