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

Side by Side Diff: chrome/browser/chromeos/gdata/gdata_operations_callback.cc

Issue 10855034: Drive: Remove gdata_params.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review (#8) fix 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include "chrome/browser/chromeos/gdata/gdata_params.h" 5 #include "chrome/browser/chromeos/gdata/gdata_operations_callback.h"
6 6
7 namespace gdata { 7 namespace gdata {
8 8
9 ResumeUploadResponse::ResumeUploadResponse(GDataErrorCode code, 9 ResumeUploadResponse::ResumeUploadResponse(GDataErrorCode code,
10 int64 start_range_received, 10 int64 start_range_received,
11 int64 end_range_received) 11 int64 end_range_received)
12 : code(code), 12 : code(code),
13 start_range_received(start_range_received), 13 start_range_received(start_range_received),
14 end_range_received(end_range_received) { 14 end_range_received(end_range_received) {
15 } 15 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 content_length(content_length), 49 content_length(content_length),
50 content_type(content_type), 50 content_type(content_type),
51 buf(buf), 51 buf(buf),
52 upload_location(upload_location), 52 upload_location(upload_location),
53 virtual_path(virtual_path) { 53 virtual_path(virtual_path) {
54 } 54 }
55 55
56 ResumeUploadParams::~ResumeUploadParams() { 56 ResumeUploadParams::~ResumeUploadParams() {
57 } 57 }
58 58
59 LoadRootFeedParams::LoadRootFeedParams(
60 FilePath search_file_path,
61 bool should_load_from_server,
62 const FindEntryCallback& callback)
63 : search_file_path(search_file_path),
64 should_load_from_server(should_load_from_server),
65 load_error(GDATA_FILE_OK),
66 load_start_time(base::Time::Now()),
67 callback(callback) {
68 }
69
70 LoadRootFeedParams::~LoadRootFeedParams() {
71 }
72
73 } // namespace gdata 59 } // namespace gdata
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698