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

Unified Diff: chrome/browser/google_apis/gdata_wapi_operations.cc

Issue 11571002: google_apis: Change protected data members to private (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/google_apis/base_operations.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google_apis/gdata_wapi_operations.cc
diff --git a/chrome/browser/google_apis/gdata_wapi_operations.cc b/chrome/browser/google_apis/gdata_wapi_operations.cc
index 0904323566a35df71d9d4469ff74d9a56cf4a98d..aa682192859951725268bc900b22013c40e20f56 100644
--- a/chrome/browser/google_apis/gdata_wapi_operations.cc
+++ b/chrome/browser/google_apis/gdata_wapi_operations.cc
@@ -191,9 +191,9 @@ DownloadFileOperation::DownloadFileOperation(
// Make sure we download the content into a temp file.
if (output_file_path.empty())
- save_temp_file_ = true;
+ set_save_temp_file(true);
else
- output_file_path_ = output_file_path;
+ set_output_file_path(output_file_path);
}
DownloadFileOperation::~DownloadFileOperation() {}
« no previous file with comments | « chrome/browser/google_apis/base_operations.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698