| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ |
| 6 #define CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ | 6 #define CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | |
| 10 #include <string> | 9 #include <string> |
| 11 | 10 |
| 12 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 13 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 14 #include "chrome/browser/sync/syncable/dir_open_result.h" | 13 #include "chrome/browser/sync/syncable/dir_open_result.h" |
| 15 #include "chrome/browser/sync/syncable/model_type.h" | 14 #include "chrome/browser/sync/syncable/model_type.h" |
| 16 #include "chrome/browser/sync/syncable/syncable.h" | 15 #include "chrome/browser/sync/syncable/syncable.h" |
| 17 | 16 |
| 18 extern "C" { | 17 extern "C" { |
| 19 struct sqlite3; | 18 struct sqlite3; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 // Set to true if migration left some old columns around that need to be | 184 // Set to true if migration left some old columns around that need to be |
| 186 // discarded. | 185 // discarded. |
| 187 bool needs_column_refresh_; | 186 bool needs_column_refresh_; |
| 188 | 187 |
| 189 DISALLOW_COPY_AND_ASSIGN(DirectoryBackingStore); | 188 DISALLOW_COPY_AND_ASSIGN(DirectoryBackingStore); |
| 190 }; | 189 }; |
| 191 | 190 |
| 192 } // namespace syncable | 191 } // namespace syncable |
| 193 | 192 |
| 194 #endif // CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ | 193 #endif // CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ |
| OLD | NEW |