OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ |
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
15 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
16 #include "components/webdata/common/web_database_table.h" | 17 #include "components/webdata/common/web_database_table.h" |
17 | 18 |
18 class WebDatabase; | 19 class WebDatabase; |
19 | 20 |
20 namespace base { | 21 namespace base { |
21 class Time; | 22 class Time; |
22 } | 23 } |
23 | 24 |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 bool InitServerCardMetadataTable(); | 485 bool InitServerCardMetadataTable(); |
485 bool InitServerAddressesTable(); | 486 bool InitServerAddressesTable(); |
486 bool InitServerAddressMetadataTable(); | 487 bool InitServerAddressMetadataTable(); |
487 | 488 |
488 DISALLOW_COPY_AND_ASSIGN(AutofillTable); | 489 DISALLOW_COPY_AND_ASSIGN(AutofillTable); |
489 }; | 490 }; |
490 | 491 |
491 } // namespace autofill | 492 } // namespace autofill |
492 | 493 |
493 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ | 494 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ |
OLD | NEW |