| Index: webkit/support/weburl_loader_mock.cc
|
| ===================================================================
|
| --- webkit/support/weburl_loader_mock.cc (revision 0)
|
| +++ webkit/support/weburl_loader_mock.cc (revision 0)
|
| @@ -0,0 +1,73 @@
|
| +// 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.
|
| +
|
| +#include "webkit/support/weburl_loader_mock.h"
|
| +
|
| +#include "third_party/WebKit/WebKit/chromium/public/WebData.h"
|
| +#include "third_party/WebKit/WebKit/chromium/public/WebURLLoaderClient.h"
|
| +#include "webkit/support/weburl_loader_mock_factory.h"
|
| +
|
| +WebURLLoaderMock::WebURLLoaderMock(WebURLLoaderMockFactory* factory,
|
| + WebKit::WebURLLoader* default_loader)
|
| + : factory_(factory),
|
| + client_(NULL),
|
| + default_loader_(default_loader),
|
| + using_default_loader_(false) {
|
| +}
|
| +
|
| +WebURLLoaderMock::~WebURLLoaderMock() {
|
| +}
|
| +
|
| +void WebURLLoaderMock::ServeAsynchronousRequest(
|
| + const WebKit::WebURLResponse& response,
|
| + const WebKit::WebData& data,
|
| + const WebKit::WebURLError& error) {
|
| + DCHECK(!using_default_loader_);
|
| + if (!client_)
|
| + return;
|
| +
|
| + client_->didReceiveResponse(this, response);
|
| + client_->didReceiveData(this, data.data(), data.size());
|
| + client_->didFinishLoading(this);
|
| +}
|
| +
|
| +void WebURLLoaderMock::loadSynchronously(const WebKit::WebURLRequest& request,
|
| + WebKit::WebURLResponse& response,
|
| + WebKit::WebURLError& error,
|
| + WebKit::WebData& data) {
|
| + if (factory_->IsMockedURL(request.url())) {
|
| + factory_->LoadSynchronously(request, &response, &error, &data);
|
| + return;
|
| + }
|
| + using_default_loader_ = true;
|
| + default_loader_->loadSynchronously(request, response, error, data);
|
| +}
|
| +
|
| +void WebURLLoaderMock::loadAsynchronously(const WebKit::WebURLRequest& request,
|
| + WebKit::WebURLLoaderClient* client) {
|
| + if (factory_->IsMockedURL(request.url())) {
|
| + client_ = client;
|
| + factory_->LoadAsynchronouly(request, this);
|
| + return;
|
| + }
|
| + using_default_loader_ = true;
|
| + default_loader_->loadAsynchronously(request, client);
|
| +}
|
| +
|
| +void WebURLLoaderMock::cancel() {
|
| + if (using_default_loader_) {
|
| + default_loader_->cancel();
|
| + return;
|
| + }
|
| + client_ = NULL;
|
| + factory_->CancelLoad(this);
|
| +}
|
| +
|
| +void WebURLLoaderMock::setDefersLoading(bool deferred) {
|
| + if (using_default_loader_) {
|
| + default_loader_->setDefersLoading(deferred);
|
| + return;
|
| + }
|
| + NOTIMPLEMENTED();
|
| +}
|
|
|
| Property changes on: webkit\support\weburl_loader_mock.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|