OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/files/file.h" | 11 #include "base/files/file.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "webkit/browser/fileapi/async_file_util.h" | 15 #include "storage/browser/fileapi/async_file_util.h" |
16 | 16 |
17 class EventRouter; | 17 class EventRouter; |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 class Time; | 20 class Time; |
21 } // namespace base | 21 } // namespace base |
22 | 22 |
23 namespace net { | 23 namespace net { |
24 class IOBuffer; | 24 class IOBuffer; |
25 } // namespace net | 25 } // namespace net |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 virtual RequestManager* GetRequestManager() = 0; | 177 virtual RequestManager* GetRequestManager() = 0; |
178 | 178 |
179 // Returns a weak pointer to this object. | 179 // Returns a weak pointer to this object. |
180 virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() = 0; | 180 virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() = 0; |
181 }; | 181 }; |
182 | 182 |
183 } // namespace file_system_provider | 183 } // namespace file_system_provider |
184 } // namespace chromeos | 184 } // namespace chromeos |
185 | 185 |
186 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INT
ERFACE_H_ | 186 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INT
ERFACE_H_ |
OLD | NEW |