| 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_RESOURCE_ENTRY_CONVERSION_H_ | 5 #ifndef COMPONENTS_DRIVE_RESOURCE_ENTRY_CONVERSION_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_RESOURCE_ENTRY_CONVERSION_H_ | 6 #define COMPONENTS_DRIVE_RESOURCE_ENTRY_CONVERSION_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| 11 | 11 |
| 12 namespace google_apis { | 12 namespace google_apis { |
| 13 class ChangeResource; | 13 class ChangeResource; |
| 14 class FileResource; | 14 class FileResource; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 43 const google_apis::FileResource& input, | 43 const google_apis::FileResource& input, |
| 44 ResourceEntry* out_entry, | 44 ResourceEntry* out_entry, |
| 45 std::string* out_parent_resource_id); | 45 std::string* out_parent_resource_id); |
| 46 | 46 |
| 47 // Converts the resource entry to the platform file info. | 47 // Converts the resource entry to the platform file info. |
| 48 void ConvertResourceEntryToFileInfo(const ResourceEntry& entry, | 48 void ConvertResourceEntryToFileInfo(const ResourceEntry& entry, |
| 49 base::File::Info* file_info); | 49 base::File::Info* file_info); |
| 50 | 50 |
| 51 } // namespace drive | 51 } // namespace drive |
| 52 | 52 |
| 53 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_RESOURCE_ENTRY_CONVERSION_H_ | 53 #endif // COMPONENTS_DRIVE_RESOURCE_ENTRY_CONVERSION_H_ |
| OLD | NEW |