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

Unified Diff: chrome/common/temp_scaffolding_stubs.h

Issue 23004: Port some strings in download/save_package.cc (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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/tab_contents/web_contents.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/temp_scaffolding_stubs.h
===================================================================
--- chrome/common/temp_scaffolding_stubs.h (revision 9445)
+++ chrome/common/temp_scaffolding_stubs.h (working copy)
@@ -446,8 +446,8 @@
const std::string current_tab_mime_type;
PrefService* prefs;
SavePackageType save_type;
- std::wstring saved_main_file_path;
- std::wstring dir;
+ FilePath saved_main_file_path;
+ FilePath dir;
};
static bool IsSavableContents(const std::string&) {
NOTIMPLEMENTED();
@@ -457,18 +457,18 @@
NOTIMPLEMENTED();
return false;
}
- static std::wstring GetSuggestNameForSaveAs(PrefService*,
- const std::wstring&) {
+ static FilePath GetSuggestNameForSaveAs(PrefService*,
+ const FilePath&) {
NOTIMPLEMENTED();
- return L"";
+ return FilePath();
}
- static bool GetSaveInfo(const std::wstring&, void*,
+ static bool GetSaveInfo(const FilePath&, void*,
SavePackageParam*, DownloadManager*) {
NOTIMPLEMENTED();
return false;
}
- SavePackage(WebContents*, SavePackageType, const std::wstring&,
- const std::wstring&) { NOTIMPLEMENTED(); }
+ SavePackage(WebContents*, SavePackageType, const FilePath&,
+ const FilePath&) { NOTIMPLEMENTED(); }
bool Init() {
NOTIMPLEMENTED();
return true;
« no previous file with comments | « chrome/browser/tab_contents/web_contents.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698