blob: 3a16a56b8ebc8705d7eed6cf8eef2acd5404951b [file] [log] [blame]
// Copyright (c) 2012 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 CONTENT_PUBLIC_TEST_MOCK_RESOURCE_CONTEXT_H_
#define CONTENT_PUBLIC_TEST_MOCK_RESOURCE_CONTEXT_H_
#include <memory>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "content/public/browser/resource_context.h"
namespace content {
class MockResourceContext : public ResourceContext {
public:
MockResourceContext();
~MockResourceContext() override;
private:
DISALLOW_COPY_AND_ASSIGN(MockResourceContext);
};
} // namespace content
#endif // CONTENT_PUBLIC_TEST_MOCK_RESOURCE_CONTEXT_H_