| 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 fileBrowserPrivate API. | 5 // This file provides utility functions for fileBrowserPrivate API. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_UTIL_H_ | 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_UTIL_H_ |
| 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_UTIL_H_ | 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_UTIL_H_ |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "chrome/browser/google_apis/gdata_wapi_parser.h" | 11 #include "google_apis/drive/gdata_wapi_parser.h" |
| 12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 13 | 13 |
| 14 class ExtensionFunctionDispatcher; | 14 class ExtensionFunctionDispatcher; |
| 15 class Profile; | 15 class Profile; |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class RenderViewHost; | 18 class RenderViewHost; |
| 19 class WebContents; | 19 class WebContents; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 void GetSelectedFileInfo(content::RenderViewHost* render_view_host, | 87 void GetSelectedFileInfo(content::RenderViewHost* render_view_host, |
| 88 Profile* profile, | 88 Profile* profile, |
| 89 const std::vector<GURL>& file_urls, | 89 const std::vector<GURL>& file_urls, |
| 90 GetSelectedFileInfoLocalPathOption local_path_option, | 90 GetSelectedFileInfoLocalPathOption local_path_option, |
| 91 GetSelectedFileInfoCallback callback); | 91 GetSelectedFileInfoCallback callback); |
| 92 | 92 |
| 93 } // namespace util | 93 } // namespace util |
| 94 } // namespace file_manager | 94 } // namespace file_manager |
| 95 | 95 |
| 96 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_UTIL_H_ | 96 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_UTIL_H_ |
| OLD | NEW |