#ifndef COMPONENTS_DOM_DISTILLER_CORE_TEST_REQUEST_VIEW_HANDLE_H_
#define COMPONENTS_DOM_DISTILLER_CORE_TEST_REQUEST_VIEW_HANDLE_H_
#include <string>
#include "components/dom_distiller/core/distilled_page_prefs.h"
#include "components/dom_distiller/core/dom_distiller_request_view_base.h"
namespace dom_distiller {
class TestRequestViewHandle : public DomDistillerRequestViewBase { … };
TestRequestViewHandle::TestRequestViewHandle(DistilledPagePrefs* prefs)
: … { … }
TestRequestViewHandle::~TestRequestViewHandle() { … }
std::string TestRequestViewHandle::GetJavaScriptBuffer() { … }
void TestRequestViewHandle::ClearJavaScriptBuffer() { … }
void TestRequestViewHandle::SendJavaScript(const std::string& buffer) { … }
}
#endif