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

Side by Side Diff: chrome/browser/chromeos/drive/file_change.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 CHROME_BROWSER_CHROMEOS_DRIVE_FILE_CHANGE_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_CHANGE_H_
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_CHANGE_H_ 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_CHANGE_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
14 #include "webkit/browser/fileapi/file_system_url.h" 14 #include "storage/browser/fileapi/file_system_url.h"
15 15
16 namespace drive { 16 namespace drive {
17 class ResourceEntry; 17 class ResourceEntry;
18 18
19 class FileChange { 19 class FileChange {
20 public: 20 public:
21 enum FileType { 21 enum FileType {
22 FILE_TYPE_UNKNOWN, 22 FILE_TYPE_UNKNOWN,
23 FILE_TYPE_FILE, 23 FILE_TYPE_FILE,
24 FILE_TYPE_DIRECTORY, 24 FILE_TYPE_DIRECTORY,
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 std::string DebugString() const; 110 std::string DebugString() const;
111 111
112 private: 112 private:
113 Map map_; 113 Map map_;
114 }; 114 };
115 115
116 } // namespace drive 116 } // namespace drive
117 117
118 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_CHANGE_H_ 118 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_CHANGE_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/drive/drive_integration_service.cc ('k') | chrome/browser/chromeos/drive/file_system_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698