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/support/weburl_loader_mock.h

Issue 2749020: Adding a way to mock WebURLLoader in webkit_support.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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/support/webkit_support.gypi ('k') | webkit/support/weburl_loader_mock.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/weburl_loader_mock.h
===================================================================
--- webkit/support/weburl_loader_mock.h (revision 0)
+++ webkit/support/weburl_loader_mock.h (revision 0)
@@ -0,0 +1,57 @@
+// 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_SUPPORT_WEBURL_LOADER_MOCK_H_
+#define WEBKIT_SUPPORT_WEBURL_LOADER_MOCK_H_
+
+#include "base/logging.h"
+#include "base/scoped_ptr.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebURLLoader.h"
+
+namespace WebKit {
+class WebData;
+struct WebURLError;
+class WebURLLoaderClient;
+class WebURLRequest;
+class WebURLResponse;
+}
+
+class WebURLLoaderMockFactory;
+
+// A simple class for mocking WebURLLoader.
+// If the WebURLLoaderMockFactory it is associated with has been configured to
+// mock the request it gets, it serves the mocked resource. Otherwise it just
+// forwards it to the default loader.
+class WebURLLoaderMock : public WebKit::WebURLLoader {
+ public:
+ // This object becomes the owner of |default_loader|.
+ WebURLLoaderMock(WebURLLoaderMockFactory* factory,
+ WebKit::WebURLLoader* default_loader);
+ virtual ~WebURLLoaderMock();
+
+ // Simulates the asynchronous request being served.
+ void ServeAsynchronousRequest(const WebKit::WebURLResponse& response,
+ const WebKit::WebData& data,
+ const WebKit::WebURLError& error);
+
+ // WebURLLoader methods:
+ virtual void loadSynchronously(const WebKit::WebURLRequest& request,
+ WebKit::WebURLResponse& response,
+ WebKit::WebURLError& error,
+ WebKit::WebData& data);
+ virtual void loadAsynchronously(const WebKit::WebURLRequest& request,
+ WebKit::WebURLLoaderClient* client);
+ virtual void cancel();
+ virtual void setDefersLoading(bool defer);
+
+ private:
+ WebURLLoaderMockFactory* factory_;
+ WebKit::WebURLLoaderClient* client_;
+ scoped_ptr<WebKit::WebURLLoader> default_loader_;
+ bool using_default_loader_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebURLLoaderMock);
+};
+
+#endif // WEBKIT_SUPPORT_WEBURL_LOADER_MOCK_H_
Property changes on: webkit\support\weburl_loader_mock.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « webkit/support/webkit_support.gypi ('k') | webkit/support/weburl_loader_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698