summaryrefslogtreecommitdiffstats
path: root/webkit/mocks/mock_weburlloader.h
diff options
context:
space:
mode:
authorannacc@chromium.org <annacc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-17 18:46:38 +0000
committerannacc@chromium.org <annacc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-17 18:46:38 +0000
commit6e89290d7d706c0adedaf01713425094d4096526 (patch)
tree82612f318887b69f4eec4986b686f426021e72dd /webkit/mocks/mock_weburlloader.h
parent45568795e2a04e29cefdaad058f55563a98cd970 (diff)
downloadchromium_src-6e89290d7d706c0adedaf01713425094d4096526.zip
chromium_src-6e89290d7d706c0adedaf01713425094d4096526.tar.gz
chromium_src-6e89290d7d706c0adedaf01713425094d4096526.tar.bz2
moving mocks into webkit/mocks/
The number of mock_... files in webkit/glue is piling up and it makes more sense for them to live in a brand new mocks/ directory. BUG=None. TEST=Compiles. Review URL: http://codereview.chromium.org/5878006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69562 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/mocks/mock_weburlloader.h')
-rw-r--r--webkit/mocks/mock_weburlloader.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/webkit/mocks/mock_weburlloader.h b/webkit/mocks/mock_weburlloader.h
new file mode 100644
index 0000000..7253faa
--- /dev/null
+++ b/webkit/mocks/mock_weburlloader.h
@@ -0,0 +1,36 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WEBKIT_MOCKS_MOCK_WEBURLLOADER_H_
+#define WEBKIT_MOCKS_MOCK_WEBURLLOADER_H_
+
+#include "testing/gmock/include/gmock/gmock.h"
+#include "webkit/glue/weburlloader_impl.h"
+
+namespace webkit_glue {
+
+class MockWebURLLoader : public WebKit::WebURLLoader {
+ public:
+ MockWebURLLoader() {
+ }
+
+ virtual ~MockWebURLLoader() {
+ }
+
+ MOCK_METHOD4(loadSynchronously, void(const WebKit::WebURLRequest& request,
+ WebKit::WebURLResponse& response,
+ WebKit::WebURLError& error,
+ WebKit::WebData& data));
+ MOCK_METHOD2(loadAsynchronously, void(const WebKit::WebURLRequest& request,
+ WebKit::WebURLLoaderClient* client));
+ MOCK_METHOD0(cancel, void());
+ MOCK_METHOD1(setDefersLoading, void(bool value));
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MockWebURLLoader);
+};
+
+} // namespace webkit_glue
+
+#endif // WEBKIT_MOCKS_MOCK_WEBURLLOADER_H_