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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_params.h ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/gdata_params.cc
===================================================================
--- chrome/browser/chromeos/gdata/gdata_params.cc (revision 149987)
+++ chrome/browser/chromeos/gdata/gdata_params.cc (working copy)
@@ -56,4 +56,18 @@
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
« 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