| 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 COMPONENTS_DRIVE_FILE_CHANGE_H_ | 5 #ifndef COMPONENTS_DRIVE_FILE_CHANGE_H_ |
| 6 #define COMPONENTS_DRIVE_FILE_CHANGE_H_ | 6 #define COMPONENTS_DRIVE_FILE_CHANGE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <deque> | 10 #include <deque> |
| 9 #include <map> | 11 #include <map> |
| 10 #include <string> | 12 #include <string> |
| 11 | 13 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 14 | 15 |
| 15 namespace drive { | 16 namespace drive { |
| 16 class ResourceEntry; | 17 class ResourceEntry; |
| 17 | 18 |
| 18 class FileChange { | 19 class FileChange { |
| 19 public: | 20 public: |
| 20 enum FileType { | 21 enum FileType { |
| 21 FILE_TYPE_NO_INFO, | 22 FILE_TYPE_NO_INFO, |
| 22 FILE_TYPE_FILE, | 23 FILE_TYPE_FILE, |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 109 |
| 109 std::string DebugString() const; | 110 std::string DebugString() const; |
| 110 | 111 |
| 111 private: | 112 private: |
| 112 Map map_; | 113 Map map_; |
| 113 }; | 114 }; |
| 114 | 115 |
| 115 } // namespace drive | 116 } // namespace drive |
| 116 | 117 |
| 117 #endif // COMPONENTS_DRIVE_FILE_CHANGE_H_ | 118 #endif // COMPONENTS_DRIVE_FILE_CHANGE_H_ |
| OLD | NEW |