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

Unified Diff: chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.h

Issue 23787003: [SyncFS] Move SyncFS V1 files from drive_backend to drive_backend_v1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move back metadata_db_migration_util* Created 7 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/sync_file_system/drive_backend/fake_drive_service_helper.h
diff --git a/chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.h b/chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.h
deleted file mode 100644
index 6e1b6c03eeb07e7c5637ee7fc0e587322f468ed3..0000000000000000000000000000000000000000
--- a/chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.h
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright 2013 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_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELPER_H_
-#define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELPER_H_
-
-#include <string>
-
-#include "base/files/scoped_temp_dir.h"
-#include "chrome/browser/drive/drive_uploader.h"
-#include "chrome/browser/drive/fake_drive_service.h"
-#include "chrome/browser/google_apis/gdata_wapi_parser.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace sync_file_system {
-namespace drive_backend {
-
-class FakeDriveServiceHelper {
- public:
- FakeDriveServiceHelper(drive::FakeDriveService* fake_drive_service,
- drive::DriveUploaderInterface* drive_uploader);
- virtual ~FakeDriveServiceHelper();
-
- google_apis::GDataErrorCode AddOrphanedFolder(
- const std::string& title,
- std::string* folder_id);
- google_apis::GDataErrorCode AddFolder(
- const std::string& parent_folder_id,
- const std::string& title,
- std::string* folder_id);
- google_apis::GDataErrorCode AddFile(
- const std::string& parent_folder_id,
- const std::string& title,
- const std::string& content,
- std::string* file_id);
- google_apis::GDataErrorCode UpdateFile(
- const std::string& file_id,
- const std::string& content);
- google_apis::GDataErrorCode RemoveResource(
- const std::string& file_id);
- google_apis::GDataErrorCode GetSyncRootFolderID(
- std::string* sync_root_folder_id);
- google_apis::GDataErrorCode ListFilesInFolder(
- const std::string& folder_id,
- ScopedVector<google_apis::ResourceEntry>* entries);
- google_apis::GDataErrorCode SearchByTitle(
- const std::string& folder_id,
- const std::string& title,
- ScopedVector<google_apis::ResourceEntry>* entries);
- google_apis::GDataErrorCode GetResourceEntry(
- const std::string& file_id,
- scoped_ptr<google_apis::ResourceEntry>* entry);
- google_apis::GDataErrorCode ReadFile(
- const std::string& file_id,
- std::string* file_content);
-
- base::FilePath base_dir_path() { return base_dir_.path(); }
-
- private:
- google_apis::GDataErrorCode CompleteListing(
- scoped_ptr<google_apis::ResourceList> list,
- ScopedVector<google_apis::ResourceEntry> * entries);
-
- void Initialize();
-
- base::FilePath WriteToTempFile(const std::string& content);
- void FlushMessageLoop();
-
- base::ScopedTempDir base_dir_;
- base::FilePath temp_dir_;
-
- // Not own.
- drive::FakeDriveService* fake_drive_service_;
- drive::DriveUploaderInterface* drive_uploader_;
-};
-
-} // namespace drive_backend
-} // namespace sync_file_system
-
-#endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELPER_H_

Powered by Google App Engine
This is Rietveld 408576698