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

Side by Side Diff: content/browser/download/mock_download_file.h

Issue 10799005: Replace the DownloadFileManager with direct ownership (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged to LKGR. Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ 5 #ifndef CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_
6 #define CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ 6 #define CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <map> 9 #include <map>
10 10
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "content/browser/download/download_file.h" 13 #include "content/browser/download/download_file.h"
14 #include "content/public/browser/download_id.h" 14 #include "content/public/browser/download_id.h"
15 #include "content/public/browser/download_manager.h" 15 #include "content/public/browser/download_manager.h"
16 #include "testing/gmock/include/gmock/gmock.h" 16 #include "testing/gmock/include/gmock/gmock.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 struct DownloadCreateInfo; 19 struct DownloadCreateInfo;
20 20
21 class MockDownloadFile : virtual public content::DownloadFile { 21 class MockDownloadFile : virtual public content::DownloadFile {
22 public: 22 public:
23 MockDownloadFile(); 23 MockDownloadFile();
24 virtual ~MockDownloadFile(); 24 virtual ~MockDownloadFile();
25 25
26 // DownloadFile functions. 26 // DownloadFile functions.
27 MOCK_METHOD0(Initialize, content::DownloadInterruptReason()); 27 MOCK_METHOD1(Initialize, void(const InitializeCallback&));
28 MOCK_METHOD2(AppendDataToFile, content::DownloadInterruptReason( 28 MOCK_METHOD2(AppendDataToFile, content::DownloadInterruptReason(
29 const char* data, size_t data_len)); 29 const char* data, size_t data_len));
30 MOCK_METHOD1(Rename, content::DownloadInterruptReason( 30 MOCK_METHOD1(Rename, content::DownloadInterruptReason(
31 const FilePath& full_path)); 31 const FilePath& full_path));
32 MOCK_METHOD3(Rename, void(const FilePath& full_path, 32 MOCK_METHOD3(Rename, void(const FilePath& full_path,
33 bool overwrite_existing_file, 33 bool overwrite_existing_file,
34 const RenameCompletionCallback& callback)); 34 const RenameCompletionCallback& callback));
35 MOCK_METHOD0(Detach, void()); 35 MOCK_METHOD0(Detach, void());
36 MOCK_METHOD0(Cancel, void()); 36 MOCK_METHOD0(Cancel, void());
37 MOCK_METHOD0(Finish, void()); 37 MOCK_METHOD0(Finish, void());
38 MOCK_METHOD0(AnnotateWithSourceInformation, void()); 38 MOCK_METHOD0(AnnotateWithSourceInformation, void());
39 MOCK_CONST_METHOD0(FullPath, FilePath()); 39 MOCK_CONST_METHOD0(FullPath, FilePath());
40 MOCK_CONST_METHOD0(InProgress, bool()); 40 MOCK_CONST_METHOD0(InProgress, bool());
41 MOCK_CONST_METHOD0(BytesSoFar, int64()); 41 MOCK_CONST_METHOD0(BytesSoFar, int64());
42 MOCK_CONST_METHOD0(CurrentSpeed, int64()); 42 MOCK_CONST_METHOD0(CurrentSpeed, int64());
43 MOCK_METHOD1(GetHash, bool(std::string* hash)); 43 MOCK_METHOD1(GetHash, bool(std::string* hash));
44 MOCK_METHOD0(GetHashState, std::string()); 44 MOCK_METHOD0(GetHashState, std::string());
45 MOCK_METHOD0(CancelDownloadRequest, void());
46 MOCK_METHOD0(SendUpdate, void()); 45 MOCK_METHOD0(SendUpdate, void());
47 MOCK_CONST_METHOD0(Id, int()); 46 MOCK_CONST_METHOD0(Id, int());
48 MOCK_METHOD0(GetDownloadManager, content::DownloadManager*()); 47 MOCK_METHOD0(GetDownloadManager, content::DownloadManager*());
49 MOCK_CONST_METHOD0(GlobalId, const content::DownloadId&()); 48 MOCK_CONST_METHOD0(GlobalId, const content::DownloadId&());
50 MOCK_CONST_METHOD0(DebugString, std::string()); 49 MOCK_CONST_METHOD0(DebugString, std::string());
51 }; 50 };
52 51
53 #endif // CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ 52 #endif // CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_
OLDNEW
« no previous file with comments | « content/browser/download/download_resource_handler.cc ('k') | content/browser/download/mock_download_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698