| 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_SYSTEM_DRIVE_OPERATIONS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_DRIVE_OPERATIONS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_DRIVE_OPERATIONS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_DRIVE_OPERATIONS_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/sequenced_task_runner.h" | 9 #include "base/task/sequenced_task_runner.h" |
| 10 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 10 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
| 11 #include "chrome/browser/chromeos/drive/resource_metadata.h" | 11 #include "chrome/browser/chromeos/drive/resource_metadata.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class FilePath; | 14 class FilePath; |
| 15 } // namespace base | 15 } // namespace base |
| 16 | 16 |
| 17 namespace drive { | 17 namespace drive { |
| 18 | 18 |
| 19 class FileSystemInterface; | 19 class FileSystemInterface; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 scoped_ptr<CreateFileOperation> create_file_operation_; | 109 scoped_ptr<CreateFileOperation> create_file_operation_; |
| 110 scoped_ptr<MoveOperation> move_operation_; | 110 scoped_ptr<MoveOperation> move_operation_; |
| 111 scoped_ptr<RemoveOperation> remove_operation_; | 111 scoped_ptr<RemoveOperation> remove_operation_; |
| 112 scoped_ptr<UpdateOperation> update_operation_; | 112 scoped_ptr<UpdateOperation> update_operation_; |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace file_system | 115 } // namespace file_system |
| 116 } // namespace drive | 116 } // namespace drive |
| 117 | 117 |
| 118 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_DRIVE_OPERATIONS_H_ | 118 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_DRIVE_OPERATIONS_H_ |
| OLD | NEW |