blob: f05581c87aa27d285a25a8bd01abfc8006e1e74a [file] [log] [blame]
// Copyright 2016 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_SHELL_TEST_RUNNER_WEB_VIEW_TEST_CLIENT_H_
#define CONTENT_SHELL_TEST_RUNNER_WEB_VIEW_TEST_CLIENT_H_
#include "base/macros.h"
#include "third_party/blink/public/web/web_view_client.h"
namespace blink {
class WebView;
} // namespace blink
namespace test_runner {
class TestRunner;
class WebTestDelegate;
class WebViewTestProxyBase;
// WebViewTestClient implements WebViewClient interface, providing behavior
// expected by tests. WebViewTestClient ends up used by WebViewTestProxy
// which coordinates forwarding WebViewClient calls either to
// WebViewTestClient or to the product code (i.e. to RenderViewImpl).
class WebViewTestClient : public blink::WebViewClient {
public:
// Caller has to ensure |web_view_test_proxy_base| lives longer than |this|.
WebViewTestClient(WebViewTestProxyBase* web_view_test_proxy_base,
std::unique_ptr<blink::WebWidgetClient> web_widget_client);
~WebViewTestClient() override;
// WebViewClient overrides needed by WebViewTestProxy.
blink::WebView* CreateView(blink::WebLocalFrame* creator,
const blink::WebURLRequest& request,
const blink::WebWindowFeatures& features,
const blink::WebString& frame_name,
blink::WebNavigationPolicy policy,
bool suppress_opener,
blink::WebSandboxFlags,
const blink::SessionStorageNamespaceId&) override;
void PrintPage(blink::WebLocalFrame* frame) override;
blink::WebString AcceptLanguages() override;
void DidFocus(blink::WebLocalFrame* calling_frame) override;
bool CanHandleGestureEvent() override;
bool CanUpdateLayout() override;
blink::WebScreenInfo GetScreenInfo() override;
blink::WebWidgetClient* WidgetClient() override;
private:
WebTestDelegate* delegate();
TestRunner* test_runner();
// Borrowed pointer to WebViewTestProxyBase.
WebViewTestProxyBase* web_view_test_proxy_base_;
std::unique_ptr<blink::WebWidgetClient> web_widget_client_;
DISALLOW_COPY_AND_ASSIGN(WebViewTestClient);
};
} // namespace test_runner
#endif // CONTENT_SHELL_TEST_RUNNER_WEB_VIEW_TEST_CLIENT_H_