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

Unified Diff: content/browser/download/download_item_impl_delegate.h

Issue 12213066: Use base namespace for FilePath in content/browser (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
Index: content/browser/download/download_item_impl_delegate.h
diff --git a/content/browser/download/download_item_impl_delegate.h b/content/browser/download/download_item_impl_delegate.h
index b6eebac424f8e28c1f82b5ec1c3e2e84f8890d15..63b4717554a8a06f74c830ef4492eb6fa3014b9f 100644
--- a/content/browser/download/download_item_impl_delegate.h
+++ b/content/browser/download/download_item_impl_delegate.h
@@ -23,10 +23,10 @@ class BrowserContext;
class CONTENT_EXPORT DownloadItemImplDelegate {
public:
typedef base::Callback<void(
- const FilePath&, // Target path
+ const base::FilePath&, // Target path
DownloadItem::TargetDisposition, // overwrite/uniquify target
DownloadDangerType,
- const FilePath& // Intermediate file path
+ const base::FilePath& // Intermediate file path
)> DownloadTargetCallback;
// The boolean argument indicates whether or not the download was
@@ -58,7 +58,7 @@ class CONTENT_EXPORT DownloadItemImplDelegate {
DownloadItemImpl* download, const ShouldOpenDownloadCallback& callback);
// Tests if a file type should be opened automatically.
- virtual bool ShouldOpenFileBasedOnExtension(const FilePath& path);
+ virtual bool ShouldOpenFileBasedOnExtension(const base::FilePath& path);
// Checks whether a downloaded file still exists and updates the
// file's state if the file is already removed.
« no previous file with comments | « content/browser/download/download_item_impl.cc ('k') | content/browser/download/download_item_impl_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698