| // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_OPERATIONS_H_ |
| #define CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_OPERATIONS_H_ |
| |
| #include <string> |
| |
| #include "chrome/browser/google_apis/operations_base.h" |
| |
| // TODO(kochi): Rename to namespace drive. http://crbug.com/136371 |
| namespace gdata { |
| |
| //============================== GetAboutOperation ============================= |
| |
| // This class performs the operation for fetching About data. |
| class GetAboutOperation : public GetDataOperation { |
| public: |
| GetAboutOperation(OperationRegistry* registry, |
| const GetDataCallback& callback); |
| virtual ~GetAboutOperation(); |
| |
| protected: |
| // Overridden from GetDataOperation. |
| virtual GURL GetURL() const OVERRIDE; |
| |
| private: |
| DISALLOW_COPY_AND_ASSIGN(GetAboutOperation); |
| }; |
| |
| //============================= GetApplistOperation ============================ |
| |
| // This class performs the operation for fetching Applist. |
| class GetApplistOperation : public GetDataOperation { |
| public: |
| GetApplistOperation(OperationRegistry* registry, |
| const GetDataCallback& callback); |
| virtual ~GetApplistOperation(); |
| |
| protected: |
| // Overridden from GetDataOperation. |
| virtual GURL GetURL() const OVERRIDE; |
| |
| private: |
| DISALLOW_COPY_AND_ASSIGN(GetApplistOperation); |
| }; |
| |
| //============================ GetChangelistOperation ========================== |
| |
| // This class performs the operation for fetching changelist. |
| class GetChangelistOperation : public GetDataOperation { |
| public: |
| // |start_changestamp| specifies the starting point of change list or 0 if |
| // all changes are necessary. |
| // |url| specifies URL for document feed fetching operation. If empty URL is |
| // passed, the default URL is used and returns the first page of the result. |
| // When non-first page result is requested, |url| should be specified. |
| GetChangelistOperation(OperationRegistry* registry, |
| const GURL& url, |
| int64 start_changestamp, |
| const GetDataCallback& callback); |
| virtual ~GetChangelistOperation(); |
| |
| protected: |
| // Overridden from GetDataOperation. |
| virtual GURL GetURL() const OVERRIDE; |
| |
| private: |
| GURL url_; |
| int64 start_changestamp_; |
| |
| DISALLOW_COPY_AND_ASSIGN(GetChangelistOperation); |
| }; |
| |
| //============================= GetFlielistOperation =========================== |
| |
| // This class performs the operation for fetching Filelist. |
| class GetFilelistOperation : public GetDataOperation { |
| public: |
| GetFilelistOperation(OperationRegistry* registry, |
| const GURL& url, |
| const std::string& search_string, |
| const GetDataCallback& callback); |
| virtual ~GetFilelistOperation(); |
| |
| protected: |
| // Overridden from GetDataOperation. |
| virtual GURL GetURL() const OVERRIDE; |
| |
| private: |
| GURL url_; |
| std::string search_string_; |
| |
| DISALLOW_COPY_AND_ASSIGN(GetFilelistOperation); |
| }; |
| |
| //=============================== GetFlieOperation ============================= |
| |
| // This class performs the operation for fetching a file. |
| class GetFileOperation : public GetDataOperation { |
| public: |
| GetFileOperation(OperationRegistry* registry, |
| const std::string& file_id, |
| const GetDataCallback& callback); |
| virtual ~GetFileOperation(); |
| |
| protected: |
| // Overridden from GetDataOperation. |
| virtual GURL GetURL() const OVERRIDE; |
| |
| private: |
| std::string file_id_; |
| |
| DISALLOW_COPY_AND_ASSIGN(GetFileOperation); |
| }; |
| |
| } // namespace gdata |
| |
| #endif // CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_OPERATIONS_H_ |