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

Unified Diff: content/browser/download/mock_download_file.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
« no previous file with comments | « content/browser/download/mhtml_generation_manager.cc ('k') | content/browser/download/save_file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/mock_download_file.h
diff --git a/content/browser/download/mock_download_file.h b/content/browser/download/mock_download_file.h
index 51f47d57cd056662f8b6dbf5b5c9b52c0e46dee4..39d48048af9e3034ec40213afc186602d6b4cf42 100644
--- a/content/browser/download/mock_download_file.h
+++ b/content/browser/download/mock_download_file.h
@@ -28,17 +28,18 @@ class MockDownloadFile : virtual public DownloadFile {
MOCK_METHOD1(Initialize, void(const InitializeCallback&));
MOCK_METHOD2(AppendDataToFile, DownloadInterruptReason(
const char* data, size_t data_len));
- MOCK_METHOD1(Rename, DownloadInterruptReason(const FilePath& full_path));
+ MOCK_METHOD1(Rename, DownloadInterruptReason(
+ const base::FilePath& full_path));
MOCK_METHOD2(RenameAndUniquify,
- void(const FilePath& full_path,
+ void(const base::FilePath& full_path,
const RenameCompletionCallback& callback));
MOCK_METHOD2(RenameAndAnnotate,
- void(const FilePath& full_path,
+ void(const base::FilePath& full_path,
const RenameCompletionCallback& callback));
MOCK_METHOD0(Detach, void());
MOCK_METHOD0(Cancel, void());
MOCK_METHOD0(Finish, void());
- MOCK_CONST_METHOD0(FullPath, FilePath());
+ MOCK_CONST_METHOD0(FullPath, base::FilePath());
MOCK_CONST_METHOD0(InProgress, bool());
MOCK_CONST_METHOD0(BytesSoFar, int64());
MOCK_CONST_METHOD0(CurrentSpeed, int64());
« no previous file with comments | « content/browser/download/mhtml_generation_manager.cc ('k') | content/browser/download/save_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698