| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h" | 12 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h" |
| 13 #include "storage/browser/fileapi/async_file_util.h" | 13 #include "storage/browser/fileapi/async_file_util.h" |
| 14 | 14 |
| 15 namespace base { | |
| 16 class DictionaryValue; | |
| 17 } // namespace base | |
| 18 | |
| 19 namespace extensions { | 15 namespace extensions { |
| 20 class EventRouter; | 16 class EventRouter; |
| 21 } // namespace extensions | 17 } // namespace extensions |
| 22 | 18 |
| 23 namespace chromeos { | 19 namespace chromeos { |
| 24 namespace file_system_provider { | 20 namespace file_system_provider { |
| 25 | 21 |
| 26 class ProvidedFileSystemInfo; | 22 class ProvidedFileSystemInfo; |
| 27 | 23 |
| 28 namespace operations { | 24 namespace operations { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 49 const storage::AsyncFileUtil::StatusCallback callback_; | 45 const storage::AsyncFileUtil::StatusCallback callback_; |
| 50 | 46 |
| 51 DISALLOW_COPY_AND_ASSIGN(Configure); | 47 DISALLOW_COPY_AND_ASSIGN(Configure); |
| 52 }; | 48 }; |
| 53 | 49 |
| 54 } // namespace operations | 50 } // namespace operations |
| 55 } // namespace file_system_provider | 51 } // namespace file_system_provider |
| 56 } // namespace chromeos | 52 } // namespace chromeos |
| 57 | 53 |
| 58 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ | 54 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ |
| OLD | NEW |