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

Unified Diff: content/public/browser/download_url_parameters.h

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « content/public/browser/download_save_info.h ('k') | content/public/browser/javascript_dialog_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/download_url_parameters.h
diff --git a/content/public/browser/download_url_parameters.h b/content/public/browser/download_url_parameters.h
index a907f092f636c36df910224e966451b3bdc7c9bf..b48bc2a2e1561b70d9c2152b663141ee047f196a 100644
--- a/content/public/browser/download_url_parameters.h
+++ b/content/public/browser/download_url_parameters.h
@@ -89,7 +89,7 @@ class CONTENT_EXPORT DownloadUrlParameters {
void set_file_path(const base::FilePath& file_path) {
save_info_.file_path = file_path;
}
- void set_suggested_name(const string16& suggested_name) {
+ void set_suggested_name(const base::string16& suggested_name) {
save_info_.suggested_name = suggested_name;
}
void set_offset(int64 offset) { save_info_.offset = offset; }
@@ -126,7 +126,9 @@ class CONTENT_EXPORT DownloadUrlParameters {
return resource_context_;
}
const base::FilePath& file_path() const { return save_info_.file_path; }
- const string16& suggested_name() const { return save_info_.suggested_name; }
+ const base::string16& suggested_name() const {
+ return save_info_.suggested_name;
+ }
int64 offset() const { return save_info_.offset; }
const std::string& hash_state() const { return save_info_.hash_state; }
bool prompt() const { return save_info_.prompt_for_save_location; }
« no previous file with comments | « content/public/browser/download_save_info.h ('k') | content/public/browser/javascript_dialog_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698