Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: components/sync/syncable/directory_backing_store.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/syncable/directory.cc ('k') | components/sync/syncable/directory_backing_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/syncable/directory_backing_store.h
diff --git a/sync/syncable/directory_backing_store.h b/components/sync/syncable/directory_backing_store.h
similarity index 92%
rename from sync/syncable/directory_backing_store.h
rename to components/sync/syncable/directory_backing_store.h
index a2c8d9cc80bcfa7d92f13cf9e24ec92572173b2a..1dd16ee4dd9b8711c3079698931bcd1f22dbe769 100644
--- a/sync/syncable/directory_backing_store.h
+++ b/components/sync/syncable/directory_backing_store.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
-#define SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
+#ifndef COMPONENTS_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
+#define COMPONENTS_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
#include <stdint.h>
@@ -13,13 +13,13 @@
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/threading/non_thread_safe.h"
+#include "components/sync/base/model_type.h"
+#include "components/sync/base/sync_export.h"
+#include "components/sync/syncable/dir_open_result.h"
+#include "components/sync/syncable/directory.h"
+#include "components/sync/syncable/metahandle_set.h"
#include "sql/connection.h"
#include "sql/statement.h"
-#include "sync/base/sync_export.h"
-#include "sync/internal_api/public/base/model_type.h"
-#include "sync/syncable/dir_open_result.h"
-#include "sync/syncable/directory.h"
-#include "sync/syncable/metahandle_set.h"
namespace sync_pb {
class EntitySpecifics;
@@ -229,12 +229,12 @@ class SYNC_EXPORT DirectoryBackingStore : public base::NonThreadSafe {
bool CreateV81ModelsTable();
// Returns true on success, false on error.
- bool MigrateToSpecifics(const char* old_columns,
- const char* specifics_column,
- void(*handler_function) (
- sql::Statement* old_value_query,
- int old_value_column,
- sync_pb::EntitySpecifics* mutable_new_value));
+ bool MigrateToSpecifics(
+ const char* old_columns,
+ const char* specifics_column,
+ void (*handler_function)(sql::Statement* old_value_query,
+ int old_value_column,
+ sync_pb::EntitySpecifics* mutable_new_value));
// Returns true on success, false on error.
bool Vacuum();
@@ -268,4 +268,4 @@ class SYNC_EXPORT DirectoryBackingStore : public base::NonThreadSafe {
} // namespace syncable
} // namespace syncer
-#endif // SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
+#endif // COMPONENTS_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
« no previous file with comments | « components/sync/syncable/directory.cc ('k') | components/sync/syncable/directory_backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698