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_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ |
6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ | 6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "chrome/browser/google_apis/auth_service_observer.h" | 13 #include "chrome/browser/google_apis/auth_service_observer.h" |
14 #include "chrome/browser/google_apis/drive_service_interface.h" | 14 #include "chrome/browser/google_apis/drive_service_interface.h" |
15 #include "chrome/browser/google_apis/gdata_wapi_operations.h" | 15 #include "chrome/browser/google_apis/gdata_wapi_operations.h" |
16 #include "chrome/browser/google_apis/gdata_wapi_url_util.h" | 16 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" |
17 | 17 |
18 class FilePath; | 18 class FilePath; |
19 class GURL; | 19 class GURL; |
20 class Profile; | 20 class Profile; |
21 | 21 |
22 namespace google_apis { | 22 namespace google_apis { |
23 class AuthService; | 23 class AuthService; |
24 class OperationRunner; | 24 class OperationRunner; |
25 | 25 |
26 // This class provides documents feed service calls for WAPI (codename for | 26 // This class provides documents feed service calls for WAPI (codename for |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // Operation objects should hold a copy of this, rather than a const | 122 // Operation objects should hold a copy of this, rather than a const |
123 // reference, as they may outlive this object. | 123 // reference, as they may outlive this object. |
124 GDataWapiUrlGenerator url_generator_; | 124 GDataWapiUrlGenerator url_generator_; |
125 | 125 |
126 DISALLOW_COPY_AND_ASSIGN(GDataWapiService); | 126 DISALLOW_COPY_AND_ASSIGN(GDataWapiService); |
127 }; | 127 }; |
128 | 128 |
129 } // namespace google_apis | 129 } // namespace google_apis |
130 | 130 |
131 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ | 131 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ |
OLD | NEW |