Chromium Code Reviews| 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_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/chromeos/gdata/drive_resource_metadata.h" | |
|
achuithb
2012/08/22 09:41:06
what is this used for?
kochi
2012/08/22 10:04:56
This source uses "enum DriveFileType".
Maybe we ca
achuithb
2012/08/22 21:23:20
Maybe we can move the typedefs and the enum to a s
| |
| 12 #include "chrome/browser/chromeos/gdata/gdata_cache.h" | 13 #include "chrome/browser/chromeos/gdata/gdata_cache.h" |
| 13 #include "chrome/browser/chromeos/gdata/gdata_directory_service.h" | |
| 14 #include "chrome/browser/chromeos/gdata/gdata_operations.h" | 14 #include "chrome/browser/chromeos/gdata/gdata_operations.h" |
| 15 #include "chrome/browser/chromeos/gdata/gdata_upload_file_info.h" | 15 #include "chrome/browser/chromeos/gdata/gdata_upload_file_info.h" |
| 16 | 16 |
| 17 namespace gdata { | 17 namespace gdata { |
| 18 | 18 |
| 19 class DocumentEntry; | 19 class DocumentEntry; |
| 20 class DriveEntryProto; | 20 class DriveEntryProto; |
| 21 | 21 |
| 22 typedef std::vector<DriveEntryProto> DriveEntryProtoVector; | 22 typedef std::vector<DriveEntryProto> DriveEntryProtoVector; |
| 23 | 23 |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 359 virtual void UpdateEntryData(const std::string& resource_id, | 359 virtual void UpdateEntryData(const std::string& resource_id, |
| 360 const std::string& md5, | 360 const std::string& md5, |
| 361 scoped_ptr<DocumentEntry> entry, | 361 scoped_ptr<DocumentEntry> entry, |
| 362 const FilePath& file_content_path, | 362 const FilePath& file_content_path, |
| 363 const base::Closure& callback) = 0; | 363 const base::Closure& callback) = 0; |
| 364 }; | 364 }; |
| 365 | 365 |
| 366 } // namespace gdata | 366 } // namespace gdata |
| 367 | 367 |
| 368 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ | 368 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ |
| OLD | NEW |