OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // This file provides utility functions for file browser handlers. | 5 // This file provides utility functions for file browser handlers. |
6 // https://developer.chrome.com/extensions/fileBrowserHandler.html | 6 // https://developer.chrome.com/extensions/fileBrowserHandler.html |
7 | 7 |
8 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ | 8 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ |
9 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ | 9 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/callback_forward.h" | 15 #include "base/callback_forward.h" |
16 #include "chrome/browser/chromeos/extensions/file_manager/file_tasks.h" | 16 #include "chrome/browser/chromeos/file_manager/file_tasks.h" |
17 | 17 |
18 class FileBrowserHandler; | 18 class FileBrowserHandler; |
19 class GURL; | 19 class GURL; |
20 class PrefService; | 20 class PrefService; |
21 class Profile; | 21 class Profile; |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class FilePath; | 24 class FilePath; |
25 } | 25 } |
26 | 26 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 Profile* profile, | 75 Profile* profile, |
76 const extensions::Extension* extension, | 76 const extensions::Extension* extension, |
77 int32 tab_id, | 77 int32 tab_id, |
78 const std::string& action_id, | 78 const std::string& action_id, |
79 const std::vector<fileapi::FileSystemURL>& file_urls, | 79 const std::vector<fileapi::FileSystemURL>& file_urls, |
80 const file_tasks::FileTaskFinishedCallback& done); | 80 const file_tasks::FileTaskFinishedCallback& done); |
81 | 81 |
82 } // namespace file_browser_handlers | 82 } // namespace file_browser_handlers |
83 } // namespace file_manager | 83 } // namespace file_manager |
84 | 84 |
85 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_HANDLERS
_H_ | 85 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ |
OLD | NEW |