diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-27 01:00:59 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-27 01:00:59 +0000 |
commit | 7ba34a0114537b08164b4f44943ec5c25aac9417 (patch) | |
tree | 641a9ffd6776ef601ebc80b4de004583612863ba /content/test/mock_weburlloader.cc | |
parent | 3d982787ffab8d0d79c47d12a91f15fc9aabdc7a (diff) | |
download | chromium_src-7ba34a0114537b08164b4f44943ec5c25aac9417.zip chromium_src-7ba34a0114537b08164b4f44943ec5c25aac9417.tar.gz chromium_src-7ba34a0114537b08164b4f44943ec5c25aac9417.tar.bz2 |
Move webkit/mocks/ to content/test
These are only used by content_unittests
BUG=265753
Review URL: https://codereview.chromium.org/24704003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225626 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/mock_weburlloader.cc')
-rw-r--r-- | content/test/mock_weburlloader.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/content/test/mock_weburlloader.cc b/content/test/mock_weburlloader.cc new file mode 100644 index 0000000..951c587 --- /dev/null +++ b/content/test/mock_weburlloader.cc @@ -0,0 +1,18 @@ +// Copyright 2013 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 "content/test/mock_weburlloader.h" + +#include "third_party/WebKit/public/platform/WebData.h" +#include "third_party/WebKit/public/platform/WebURLError.h" +#include "third_party/WebKit/public/platform/WebURLRequest.h" +#include "third_party/WebKit/public/platform/WebURLResponse.h" + +namespace content { + +MockWebURLLoader::MockWebURLLoader() {} + +MockWebURLLoader::~MockWebURLLoader() {} + +} // namespace content |