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

Side by Side Diff: sync/syncable/directory_backing_store.h

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/syncable/dir_open_result.h ('k') | sync/syncable/directory_backing_store.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ 5 #ifndef SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
6 #define CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ 6 #define SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/threading/non_thread_safe.h" 12 #include "base/threading/non_thread_safe.h"
13 #include "chrome/browser/sync/syncable/dir_open_result.h"
14 #include "chrome/browser/sync/syncable/model_type.h"
15 #include "chrome/browser/sync/syncable/syncable.h"
16 #include "sql/connection.h" 13 #include "sql/connection.h"
17 #include "sql/statement.h" 14 #include "sql/statement.h"
15 #include "sync/syncable/dir_open_result.h"
16 #include "sync/syncable/model_type.h"
17 #include "sync/syncable/syncable.h"
18 18
19 namespace sync_pb { 19 namespace sync_pb {
20 class EntitySpecifics; 20 class EntitySpecifics;
21 } 21 }
22 22
23 namespace syncable { 23 namespace syncable {
24 24
25 struct ColumnSpec; 25 struct ColumnSpec;
26 typedef Directory::MetahandlesIndex MetahandlesIndex; 26 typedef Directory::MetahandlesIndex MetahandlesIndex;
27 27
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 156
157 // Set to true if migration left some old columns around that need to be 157 // Set to true if migration left some old columns around that need to be
158 // discarded. 158 // discarded.
159 bool needs_column_refresh_; 159 bool needs_column_refresh_;
160 160
161 DISALLOW_COPY_AND_ASSIGN(DirectoryBackingStore); 161 DISALLOW_COPY_AND_ASSIGN(DirectoryBackingStore);
162 }; 162 };
163 163
164 } // namespace syncable 164 } // namespace syncable
165 165
166 #endif // CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_ 166 #endif // SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
OLDNEW
« no previous file with comments | « sync/syncable/dir_open_result.h ('k') | sync/syncable/directory_backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698