Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2294)

Unified Diff: chrome/browser/chromeos/gdata/drive_api_operations.h

Issue 10920091: Move Drive API files to google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reflect comments Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/gdata/drive_api_operations.h
diff --git a/chrome/browser/chromeos/gdata/drive_api_operations.h b/chrome/browser/chromeos/gdata/drive_api_operations.h
deleted file mode 100644
index eccd3b5d37c4dd3294e069c62dbb886904e975ab..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/gdata/drive_api_operations.h
+++ /dev/null
@@ -1,120 +0,0 @@
-// 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_CHROMEOS_GDATA_DRIVE_API_OPERATIONS_H_
-#define CHROME_BROWSER_CHROMEOS_GDATA_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_CHROMEOS_GDATA_DRIVE_API_OPERATIONS_H_

Powered by Google App Engine
This is Rietveld 408576698