| Index: webkit/glue/mock_weburlloader_impl.h
|
| diff --git a/webkit/glue/mock_weburlloader_impl.h b/webkit/glue/mock_weburlloader_impl.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d8dc37adfcd3ce1b1948b57e252fcc44865509d9
|
| --- /dev/null
|
| +++ b/webkit/glue/mock_weburlloader_impl.h
|
| @@ -0,0 +1,38 @@
|
| +// 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_GLUE_MOCK_WEBURLLOADER_IMPL_H_
|
| +#define WEBKIT_GLUE_MOCK_WEBURLLOADER_IMPL_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() {
|
| + OnURLDestroy();
|
| + }
|
| +
|
| + 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));
|
| + MOCK_METHOD0(OnURLDestroy, void());
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(MockWebURLLoader);
|
| +};
|
| +
|
| +} // namespace webkit_glue
|
| +
|
| +#endif // WEBKIT_GLUE_MOCK_WEBURLLOADER_IMPL_H_
|
|
|