| 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/gdata_cache.h" | 12 #include "chrome/browser/chromeos/gdata/gdata_cache.h" |
| 13 #include "chrome/browser/chromeos/gdata/gdata_files.h" | 13 #include "chrome/browser/chromeos/gdata/gdata_files.h" |
| 14 #include "chrome/browser/chromeos/gdata/gdata_params.h" | |
| 15 #include "chrome/browser/chromeos/gdata/gdata_upload_file_info.h" | 14 #include "chrome/browser/chromeos/gdata/gdata_upload_file_info.h" |
| 16 | 15 |
| 17 namespace gdata { | 16 namespace gdata { |
| 18 | 17 |
| 19 class DocumentEntry; | 18 class DocumentEntry; |
| 20 class GDataDirectoryProto; | 19 class GDataDirectoryProto; |
| 21 class GDataEntryProto; | 20 class GDataEntryProto; |
| 22 class GDataFileProto; | 21 class GDataFileProto; |
| 23 | 22 |
| 24 // Information about search result returned by Search Async callback. | 23 // Information about search result returned by Search Async callback. |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 const FilePath& virtual_dir_path, | 354 const FilePath& virtual_dir_path, |
| 356 scoped_ptr<DocumentEntry> entry, | 355 scoped_ptr<DocumentEntry> entry, |
| 357 const FilePath& file_content_path, | 356 const FilePath& file_content_path, |
| 358 GDataCache::FileOperationType cache_operation, | 357 GDataCache::FileOperationType cache_operation, |
| 359 const base::Closure& callback) = 0; | 358 const base::Closure& callback) = 0; |
| 360 }; | 359 }; |
| 361 | 360 |
| 362 } // namespace gdata | 361 } // namespace gdata |
| 363 | 362 |
| 364 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ | 363 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_INTERFACE_H_ |
| OLD | NEW |