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

Unified Diff: chrome/browser/chromeos/gdata/gdata_params.cc

Issue 10855034: Drive: Remove gdata_params.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix reviews (#12) and Rebase Created 8 years, 4 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/gdata_params.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_params.cc b/chrome/browser/chromeos/gdata/gdata_params.cc
deleted file mode 100644
index 29a6bf6422734b6dda8d7cefce851462652ad0be..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/gdata/gdata_params.cc
+++ /dev/null
@@ -1,73 +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.
-
-#include "chrome/browser/chromeos/gdata/gdata_params.h"
-
-namespace gdata {
-
-ResumeUploadResponse::ResumeUploadResponse(GDataErrorCode code,
- int64 start_range_received,
- int64 end_range_received)
- : code(code),
- start_range_received(start_range_received),
- end_range_received(end_range_received) {
-}
-
-ResumeUploadResponse::~ResumeUploadResponse() {
-}
-
-InitiateUploadParams::InitiateUploadParams(
- UploadMode upload_mode,
- const std::string& title,
- const std::string& content_type,
- int64 content_length,
- const GURL& upload_location,
- const FilePath& virtual_path)
- : upload_mode(upload_mode),
- title(title),
- content_type(content_type),
- content_length(content_length),
- upload_location(upload_location),
- virtual_path(virtual_path) {
-}
-
-InitiateUploadParams::~InitiateUploadParams() {
-}
-
-ResumeUploadParams::ResumeUploadParams(
- UploadMode upload_mode,
- int64 start_range,
- int64 end_range,
- int64 content_length,
- const std::string& content_type,
- scoped_refptr<net::IOBuffer> buf,
- const GURL& upload_location,
- const FilePath& virtual_path) : upload_mode(upload_mode),
- start_range(start_range),
- end_range(end_range),
- content_length(content_length),
- content_type(content_type),
- buf(buf),
- upload_location(upload_location),
- virtual_path(virtual_path) {
-}
-
-ResumeUploadParams::~ResumeUploadParams() {
-}
-
-LoadRootFeedParams::LoadRootFeedParams(
- FilePath search_file_path,
- bool should_load_from_server,
- const FindEntryCallback& callback)
- : search_file_path(search_file_path),
- should_load_from_server(should_load_from_server),
- load_error(GDATA_FILE_OK),
- load_start_time(base::Time::Now()),
- callback(callback) {
-}
-
-LoadRootFeedParams::~LoadRootFeedParams() {
-}
-
-} // namespace gdata

Powered by Google App Engine
This is Rietveld 408576698