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

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

Issue 10800092: Database support for GDataDirectoryService. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_params.h ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_params.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,
(...skipping 38 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
59 } // namespace gdata 73 } // namespace gdata
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_params.h ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698