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

Unified Diff: third_party/WebKit/Source/core/loader/MockThreadableLoader.h

Issue 1264453002: Split the constructor of ThreadableLoader into two methods (ctor and start()) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed pipes around non-variables in a comment Created 4 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: third_party/WebKit/Source/core/loader/MockThreadableLoader.h
diff --git a/third_party/WebKit/Source/core/loader/MockThreadableLoader.h b/third_party/WebKit/Source/core/loader/MockThreadableLoader.h
index e4171704753f0ae26006a3fc9d1e2f4359f5e23f..11920f961dc229d968ddb2dd7c94fa98d3b3a945 100644
--- a/third_party/WebKit/Source/core/loader/MockThreadableLoader.h
+++ b/third_party/WebKit/Source/core/loader/MockThreadableLoader.h
@@ -15,6 +15,7 @@ class MockThreadableLoader : public ThreadableLoader {
public:
static PassRefPtr<MockThreadableLoader> create() { return adoptRef(new testing::StrictMock<MockThreadableLoader>); }
+ MOCK_METHOD1(start, void(const ResourceRequest&));
MOCK_METHOD1(overrideTimeout, void(unsigned long));
MOCK_METHOD0(cancel, void());

Powered by Google App Engine
This is Rietveld 408576698