| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |