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

Unified Diff: content/shell/shell_download_manager_delegate.h

Issue 12208057: Add explicit base to FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « content/shell/shell_devtools_delegate.cc ('k') | content/shell/shell_download_manager_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_download_manager_delegate.h
diff --git a/content/shell/shell_download_manager_delegate.h b/content/shell/shell_download_manager_delegate.h
index 4dd08d7bbd1ad223db5e0a506281ef601c192ba3..87cf290ba9b10de83e9c4db9821d43f4ca3628d4 100644
--- a/content/shell/shell_download_manager_delegate.h
+++ b/content/shell/shell_download_manager_delegate.h
@@ -28,7 +28,7 @@ class ShellDownloadManagerDelegate
// Inhibits prompting and sets the default download path.
void SetDownloadBehaviorForTesting(
- const FilePath& default_download_path);
+ const base::FilePath& default_download_path);
protected:
// To allow subclasses for testing.
@@ -40,17 +40,17 @@ class ShellDownloadManagerDelegate
void GenerateFilename(int32 download_id,
const DownloadTargetCallback& callback,
- const FilePath& generated_name,
- const FilePath& suggested_directory);
+ const base::FilePath& generated_name,
+ const base::FilePath& suggested_directory);
void OnDownloadPathGenerated(int32 download_id,
const DownloadTargetCallback& callback,
- const FilePath& suggested_path);
+ const base::FilePath& suggested_path);
void ChooseDownloadPath(int32 download_id,
const DownloadTargetCallback& callback,
- const FilePath& suggested_path);
+ const base::FilePath& suggested_path);
DownloadManager* download_manager_;
- FilePath default_download_path_;
+ base::FilePath default_download_path_;
bool suppress_prompting_;
DISALLOW_COPY_AND_ASSIGN(ShellDownloadManagerDelegate);
« no previous file with comments | « content/shell/shell_devtools_delegate.cc ('k') | content/shell/shell_download_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698