| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_DRIVE_DRIVE_API_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_DRIVE_DRIVE_API_SERVICE_H_ |
| 6 #define CHROME_BROWSER_DRIVE_DRIVE_API_SERVICE_H_ | 6 #define CHROME_BROWSER_DRIVE_DRIVE_API_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "chrome/browser/drive/drive_service_interface.h" | 13 #include "chrome/browser/drive/drive_service_interface.h" |
| 14 #include "chrome/browser/google_apis/auth_service_interface.h" | 14 #include "google_apis/drive/auth_service_interface.h" |
| 15 #include "chrome/browser/google_apis/auth_service_observer.h" | 15 #include "google_apis/drive/auth_service_observer.h" |
| 16 #include "chrome/browser/google_apis/drive_api_url_generator.h" | 16 #include "google_apis/drive/drive_api_url_generator.h" |
| 17 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" | 17 #include "google_apis/drive/gdata_wapi_url_generator.h" |
| 18 | 18 |
| 19 class GURL; | 19 class GURL; |
| 20 class OAuth2TokenService; | 20 class OAuth2TokenService; |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class FilePath; | 23 class FilePath; |
| 24 class SequencedTaskRunner; | 24 class SequencedTaskRunner; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace google_apis { | 27 namespace google_apis { |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 google_apis::DriveApiUrlGenerator url_generator_; | 202 google_apis::DriveApiUrlGenerator url_generator_; |
| 203 google_apis::GDataWapiUrlGenerator wapi_url_generator_; | 203 google_apis::GDataWapiUrlGenerator wapi_url_generator_; |
| 204 const std::string custom_user_agent_; | 204 const std::string custom_user_agent_; |
| 205 | 205 |
| 206 DISALLOW_COPY_AND_ASSIGN(DriveAPIService); | 206 DISALLOW_COPY_AND_ASSIGN(DriveAPIService); |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 } // namespace drive | 209 } // namespace drive |
| 210 | 210 |
| 211 #endif // CHROME_BROWSER_DRIVE_DRIVE_API_SERVICE_H_ | 211 #endif // CHROME_BROWSER_DRIVE_DRIVE_API_SERVICE_H_ |
| OLD | NEW |