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

Side by Side Diff: chrome/browser/sync_file_system/sync_file_metadata.h

Issue 559063002: Remove webkit/browser/, point everything to storage/browser/ instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up DEPS per feedback Created 6 years, 3 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FILE_SYSTEM_SYNC_FILE_METADATA_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "chrome/browser/sync_file_system/file_change.h" 10 #include "chrome/browser/sync_file_system/file_change.h"
11 #include "webkit/browser/fileapi/file_system_url.h" 11 #include "storage/browser/fileapi/file_system_url.h"
12 12
13 namespace sync_file_system { 13 namespace sync_file_system {
14 14
15 class SyncFileMetadata { 15 class SyncFileMetadata {
16 public: 16 public:
17 SyncFileMetadata(); 17 SyncFileMetadata();
18 SyncFileMetadata(SyncFileType file_type, 18 SyncFileMetadata(SyncFileType file_type,
19 int64 size, 19 int64 size,
20 const base::Time& last_modified); 20 const base::Time& last_modified);
21 ~SyncFileMetadata(); 21 ~SyncFileMetadata();
(...skipping 11 matching lines...) Expand all
33 33
34 storage::FileSystemURL url; 34 storage::FileSystemURL url;
35 base::FilePath local_file_path; 35 base::FilePath local_file_path;
36 SyncFileMetadata metadata; 36 SyncFileMetadata metadata;
37 FileChangeList changes; 37 FileChangeList changes;
38 }; 38 };
39 39
40 } // namespace sync_file_system 40 } // namespace sync_file_system
41 41
42 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ 42 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync_file_system/sync_callbacks.h ('k') | chrome/browser/sync_file_system/sync_file_system_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698