| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/sync/syncable/directory_backing_store.h" | 5 #include "chrome/browser/sync/syncable/directory_backing_store.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #if defined(OS_MACOSX) | 9 #if defined(OS_MACOSX) |
| 10 #include <CoreFoundation/CoreFoundation.h> | 10 #include <CoreFoundation/CoreFoundation.h> |
| 11 #endif | 11 #endif |
| 12 | 12 |
| 13 #include <limits> | 13 #include <limits> |
| 14 | 14 |
| 15 #include "base/file_util.h" | 15 #include "base/file_util.h" |
| 16 #include "base/hash_tables.h" | 16 #include "base/hash_tables.h" |
| 17 #include "base/logging.h" | 17 #include "base/logging.h" |
| 18 #include "base/metrics/histogram.h" | 18 #include "base/metrics/histogram.h" |
| 19 #include "base/stl_util-inl.h" | 19 #include "base/stl_util.h" |
| 20 #include "base/stringprintf.h" | 20 #include "base/stringprintf.h" |
| 21 #include "base/string_number_conversions.h" | 21 #include "base/string_number_conversions.h" |
| 22 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" | 22 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" |
| 23 #include "chrome/browser/sync/protocol/service_constants.h" | 23 #include "chrome/browser/sync/protocol/service_constants.h" |
| 24 #include "chrome/browser/sync/protocol/sync.pb.h" | 24 #include "chrome/browser/sync/protocol/sync.pb.h" |
| 25 #include "chrome/browser/sync/syncable/syncable-inl.h" | 25 #include "chrome/browser/sync/syncable/syncable-inl.h" |
| 26 #include "chrome/browser/sync/syncable/syncable_columns.h" | 26 #include "chrome/browser/sync/syncable/syncable_columns.h" |
| 27 #include "chrome/common/random.h" | 27 #include "chrome/common/random.h" |
| 28 #include "chrome/common/sqlite_utils.h" | 28 #include "chrome/common/sqlite_utils.h" |
| 29 #include "third_party/sqlite/sqlite3.h" | 29 #include "third_party/sqlite/sqlite3.h" |
| (...skipping 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1227 "id TEXT primary key, " | 1227 "id TEXT primary key, " |
| 1228 "name TEXT, " | 1228 "name TEXT, " |
| 1229 "store_birthday TEXT, " | 1229 "store_birthday TEXT, " |
| 1230 "db_create_version TEXT, " | 1230 "db_create_version TEXT, " |
| 1231 "db_create_time INT, " | 1231 "db_create_time INT, " |
| 1232 "next_id INT default -2, " | 1232 "next_id INT default -2, " |
| 1233 "cache_guid TEXT )"); | 1233 "cache_guid TEXT )"); |
| 1234 return ExecQuery(load_dbhandle_, query.c_str()); | 1234 return ExecQuery(load_dbhandle_, query.c_str()); |
| 1235 } | 1235 } |
| 1236 } // namespace syncable | 1236 } // namespace syncable |
| OLD | NEW |