| 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_GDATA_WAPI_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_DRIVE_GDATA_WAPI_SERVICE_H_ | 
| 6 #define CHROME_BROWSER_DRIVE_GDATA_WAPI_SERVICE_H_ | 6 #define CHROME_BROWSER_DRIVE_GDATA_WAPI_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/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" | 
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" | 
| 14 #include "chrome/browser/drive/drive_service_interface.h" | 14 #include "chrome/browser/drive/drive_service_interface.h" | 
| 15 #include "chrome/browser/google_apis/auth_service_interface.h" | 15 #include "google_apis/drive/auth_service_interface.h" | 
| 16 #include "chrome/browser/google_apis/auth_service_observer.h" | 16 #include "google_apis/drive/auth_service_observer.h" | 
| 17 #include "chrome/browser/google_apis/gdata_wapi_requests.h" | 17 #include "google_apis/drive/gdata_wapi_requests.h" | 
| 18 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" | 18 #include "google_apis/drive/gdata_wapi_url_generator.h" | 
| 19 | 19 | 
| 20 class GURL; | 20 class GURL; | 
| 21 class OAuth2TokenService; | 21 class OAuth2TokenService; | 
| 22 | 22 | 
| 23 namespace base { | 23 namespace base { | 
| 24 class FilePath; | 24 class FilePath; | 
| 25 class SequencedTaskRunner; | 25 class SequencedTaskRunner; | 
| 26 } | 26 } | 
| 27 | 27 | 
| 28 namespace google_apis { | 28 namespace google_apis { | 
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 199   // reference, as they may outlive this object. | 199   // reference, as they may outlive this object. | 
| 200   const google_apis::GDataWapiUrlGenerator url_generator_; | 200   const google_apis::GDataWapiUrlGenerator url_generator_; | 
| 201   const std::string custom_user_agent_; | 201   const std::string custom_user_agent_; | 
| 202 | 202 | 
| 203   DISALLOW_COPY_AND_ASSIGN(GDataWapiService); | 203   DISALLOW_COPY_AND_ASSIGN(GDataWapiService); | 
| 204 }; | 204 }; | 
| 205 | 205 | 
| 206 }  // namespace drive | 206 }  // namespace drive | 
| 207 | 207 | 
| 208 #endif  // CHROME_BROWSER_DRIVE_GDATA_WAPI_SERVICE_H_ | 208 #endif  // CHROME_BROWSER_DRIVE_GDATA_WAPI_SERVICE_H_ | 
| OLD | NEW | 
|---|