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

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

Issue 10699044: [Sync] Move sync/{internal_api,syncable} into syncer namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
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 SYNC_SYNCABLE_DIRECTORY_H_ 5 #ifndef SYNC_SYNCABLE_DIRECTORY_H_
6 #define SYNC_SYNCABLE_DIRECTORY_H_ 6 #define SYNC_SYNCABLE_DIRECTORY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/file_util.h" 13 #include "base/file_util.h"
14 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
15 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" 15 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h"
16 #include "sync/internal_api/public/util/weak_handle.h" 16 #include "sync/internal_api/public/util/weak_handle.h"
17 #include "sync/syncable/dir_open_result.h" 17 #include "sync/syncable/dir_open_result.h"
18 #include "sync/syncable/entry_kernel.h" 18 #include "sync/syncable/entry_kernel.h"
19 #include "sync/syncable/metahandle_set.h" 19 #include "sync/syncable/metahandle_set.h"
20 #include "sync/syncable/scoped_kernel_lock.h" 20 #include "sync/syncable/scoped_kernel_lock.h"
21 #include "sync/util/cryptographer.h" 21 #include "sync/util/cryptographer.h"
22 22
23 namespace syncer { 23 namespace syncer {
24
24 class Encryptor; 25 class Encryptor;
25 class UnrecoverableErrorHandler; 26 class UnrecoverableErrorHandler;
26 }
27 27
28 namespace syncable { 28 namespace syncable {
29 29
30 class DirectoryChangeDelegate; 30 class DirectoryChangeDelegate;
31 class TransactionObserver; 31 class TransactionObserver;
32 class BaseTransaction; 32 class BaseTransaction;
33 class WriteTransaction; 33 class WriteTransaction;
34 class ScopedKernelLock; 34 class ScopedKernelLock;
35 class DirectoryBackingStore; 35 class DirectoryBackingStore;
36 class IdFilter; 36 class IdFilter;
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 599
600 scoped_ptr<DirectoryBackingStore> store_; 600 scoped_ptr<DirectoryBackingStore> store_;
601 601
602 syncer::UnrecoverableErrorHandler* const unrecoverable_error_handler_; 602 syncer::UnrecoverableErrorHandler* const unrecoverable_error_handler_;
603 const syncer::ReportUnrecoverableErrorFunction 603 const syncer::ReportUnrecoverableErrorFunction
604 report_unrecoverable_error_function_; 604 report_unrecoverable_error_function_;
605 bool unrecoverable_error_set_; 605 bool unrecoverable_error_set_;
606 }; 606 };
607 607
608 } // namespace syncable 608 } // namespace syncable
609 } // namespace syncer
609 610
610 #endif // SYNC_SYNCABLE_DIRECTORY_H_ 611 #endif // SYNC_SYNCABLE_DIRECTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698