| 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 Drive specific API functions. | 5 // This file provides Drive specific API functions. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_DRIVE_H_ | 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_DRIVE_H_ |
| 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_DRIVE_H_ | 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_DRIVE_H_ |
| 9 | 9 |
| 10 #include <stddef.h> |
| 11 |
| 10 #include <string> | 12 #include <string> |
| 11 #include <vector> | 13 #include <vector> |
| 12 | 14 |
| 13 #include "base/files/file.h" | 15 #include "base/files/file.h" |
| 14 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 15 #include "chrome/browser/chromeos/extensions/file_manager/private_api_base.h" | 17 #include "chrome/browser/chromeos/extensions/file_manager/private_api_base.h" |
| 16 #include "chrome/browser/chromeos/file_manager/fileapi_util.h" | 18 #include "chrome/browser/chromeos/file_manager/fileapi_util.h" |
| 17 #include "components/drive/file_errors.h" | 19 #include "components/drive/file_errors.h" |
| 18 #include "components/drive/file_system_interface.h" | 20 #include "components/drive/file_system_interface.h" |
| 19 | 21 |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 const std::string& access_token); | 256 const std::string& access_token); |
| 255 | 257 |
| 256 private: | 258 private: |
| 257 GURL download_url_; | 259 GURL download_url_; |
| 258 scoped_ptr<google_apis::AuthService> auth_service_; | 260 scoped_ptr<google_apis::AuthService> auth_service_; |
| 259 }; | 261 }; |
| 260 | 262 |
| 261 } // namespace extensions | 263 } // namespace extensions |
| 262 | 264 |
| 263 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_DRIVE_H_ | 265 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_DRIVE_H_ |
| OLD | NEW |