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

Side by Side Diff: chrome/browser/sync/syncable/on_disk_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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_
6 #define CHROME_BROWSER_SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_
7 #pragma once
8
9 #include "base/file_path.h"
10 #include "chrome/browser/sync/syncable/directory_backing_store.h"
11
12 namespace syncable {
13
14 // This is the concrete class that provides a useful implementation of
15 // DirectoryBackingStore.
16 class OnDiskDirectoryBackingStore : public DirectoryBackingStore {
17 public:
18 OnDiskDirectoryBackingStore(const std::string& dir_name,
19 const FilePath& backing_filepath);
20 virtual DirOpenResult Load(
21 MetahandlesIndex* entry_bucket,
22 Directory::KernelLoadInfo* kernel_load_info) OVERRIDE;
23
24 private:
25 FilePath backing_filepath_;
26 };
27
28 } // namespace syncable
29
30 #endif // CHROME_BROWSER_SYNC_SYNCABLE_ON_DISK_DIRECTORY_BACKING_STORE_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync/syncable/model_type_unittest.cc ('k') | chrome/browser/sync/syncable/on_disk_directory_backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698