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_CHROMEOS_GDATA_GDATA_OPERATIONS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_OPERATIONS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_OPERATIONS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_OPERATIONS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
| 11 #include "chrome/browser/chromeos/gdata/gdata_documents_service.h" |
11 #include "chrome/browser/chromeos/gdata/operations_base.h" | 12 #include "chrome/browser/chromeos/gdata/operations_base.h" |
12 | 13 |
13 namespace gdata { | 14 namespace gdata { |
14 | 15 |
15 //============================ GetDocumentsOperation =========================== | 16 //============================ GetDocumentsOperation =========================== |
16 | 17 |
17 // This class performs the operation for fetching a document list. | 18 // This class performs the operation for fetching a document list. |
18 class GetDocumentsOperation : public GetDataOperation { | 19 class GetDocumentsOperation : public GetDataOperation { |
19 public: | 20 public: |
20 GetDocumentsOperation(GDataOperationRegistry* registry, | 21 GetDocumentsOperation(GDataOperationRegistry* registry, |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 | 438 |
438 // Callback to which the photo data is passed. | 439 // Callback to which the photo data is passed. |
439 GetDownloadDataCallback callback_; | 440 GetDownloadDataCallback callback_; |
440 | 441 |
441 DISALLOW_COPY_AND_ASSIGN(GetContactPhotoOperation); | 442 DISALLOW_COPY_AND_ASSIGN(GetContactPhotoOperation); |
442 }; | 443 }; |
443 | 444 |
444 } // namespace gdata | 445 } // namespace gdata |
445 | 446 |
446 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_OPERATIONS_H_ | 447 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_OPERATIONS_H_ |
OLD | NEW |