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

Unified Diff: webkit/glue/mock_resource_loader_bridge.h

Issue 594036: Support sending a sliced file in chromium.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 | « webkit/glue/glue_serialize_unittest.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/mock_resource_loader_bridge.h
===================================================================
--- webkit/glue/mock_resource_loader_bridge.h (revision 42417)
+++ webkit/glue/mock_resource_loader_bridge.h (working copy)
@@ -21,9 +21,11 @@
}
MOCK_METHOD2(AppendDataToUpload, void(const char* data, int data_len));
- MOCK_METHOD3(AppendFileRangeToUpload, void(const FilePath& file_path,
- uint64 offset,
- uint64 length));
+ MOCK_METHOD4(AppendFileRangeToUpload,
+ void(const FilePath& file_path,
+ uint64 offset,
+ uint64 length,
+ const base::Time& expected_modification_time));
MOCK_METHOD1(SetUploadIdentifier, void(int64 identifier));
MOCK_METHOD1(Start, bool(ResourceLoaderBridge::Peer* peer));
MOCK_METHOD0(Cancel, void());
« no previous file with comments | « webkit/glue/glue_serialize_unittest.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698