| // 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_FRAME_TEST_CLIENT_H_ |
| #define CONTENT_SHELL_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ |
| |
| #include <map> |
| #include <string> |
| |
| #include "base/macros.h" |
| #include "third_party/blink/public/web/web_local_frame_client.h" |
| |
| namespace test_runner { |
| |
| class TestRunner; |
| class WebFrameTestProxyBase; |
| class WebTestDelegate; |
| class WebViewTestProxyBase; |
| |
| // WebFrameTestClient implements WebLocalFrameClient interface, providing |
| // behavior expected by tests. WebFrameTestClient ends up used by |
| // WebFrameTestProxy which coordinates forwarding WebLocalFrameClient calls |
| // either to WebFrameTestClient or to the product code (i.e. to |
| // RenderFrameImpl). |
| class WebFrameTestClient : public blink::WebLocalFrameClient { |
| public: |
| // Caller has to ensure that all arguments (|delegate|, |
| // |web_view_test_proxy_base_| and so forth) live longer than |this|. |
| WebFrameTestClient(WebTestDelegate* delegate, |
| WebViewTestProxyBase* web_view_test_proxy_base, |
| WebFrameTestProxyBase* web_frame_test_proxy_base); |
| |
| ~WebFrameTestClient() override; |
| bool ShouldContinueNavigation(const blink::WebNavigationInfo& info); |
| |
| static void PrintFrameDescription(WebTestDelegate* delegate, |
| blink::WebLocalFrame* frame); |
| |
| // WebLocalFrameClient overrides needed by WebFrameTestProxy. |
| void RunModalAlertDialog(const blink::WebString& message) override; |
| bool RunModalConfirmDialog(const blink::WebString& message) override; |
| bool RunModalPromptDialog(const blink::WebString& message, |
| const blink::WebString& default_value, |
| blink::WebString* actual_value) override; |
| bool RunModalBeforeUnloadDialog(bool is_reload) override; |
| void PostAccessibilityEvent(const blink::WebAXObject& object, |
| ax::mojom::Event event) override; |
| void MarkWebAXObjectDirty(const blink::WebAXObject& obj, |
| bool subtree) override; |
| void DidChangeSelection(bool is_selection_empty) override; |
| void DidChangeContents() override; |
| blink::WebPlugin* CreatePlugin(const blink::WebPluginParams& params) override; |
| void ShowContextMenu( |
| const blink::WebContextMenuData& context_menu_data) override; |
| void DidAddMessageToConsole(const blink::WebConsoleMessage& message, |
| const blink::WebString& source_name, |
| unsigned source_line, |
| const blink::WebString& stack_trace) override; |
| void DownloadURL(const blink::WebURLRequest& request, |
| blink::WebLocalFrameClient::CrossOriginRedirects |
| cross_origin_redirect_behavior, |
| mojo::ScopedMessagePipeHandle blob_url_token) override; |
| void DidReceiveTitle(const blink::WebString& title, |
| blink::WebTextDirection direction) override; |
| void DidChangeIcon(blink::WebIconURL::Type icon_type) override; |
| void DidFailLoad(const blink::WebURLError& error, |
| blink::WebHistoryCommitType commit_type) override; |
| void DidStartLoading() override; |
| void DidStopLoading() override; |
| void DidDispatchPingLoader(const blink::WebURL& url) override; |
| void WillSendRequest(blink::WebURLRequest& request) override; |
| void DidReceiveResponse(const blink::WebURLResponse& response) override; |
| void CheckIfAudioSinkExistsAndIsAuthorized( |
| const blink::WebString& sink_id, |
| std::unique_ptr<blink::WebSetSinkIdCallbacks> web_callbacks) override; |
| void DidClearWindowObject() override; |
| blink::WebEffectiveConnectionType GetEffectiveConnectionType() override; |
| |
| private: |
| TestRunner* test_runner(); |
| void HandleWebAccessibilityEvent(const blink::WebAXObject& obj, |
| const char* event_name); |
| |
| // Borrowed pointers to other parts of web tests state. |
| WebTestDelegate* delegate_; |
| WebViewTestProxyBase* web_view_test_proxy_base_; |
| WebFrameTestProxyBase* web_frame_test_proxy_base_; |
| |
| DISALLOW_COPY_AND_ASSIGN(WebFrameTestClient); |
| }; |
| |
| } // namespace test_runner |
| |
| #endif // CONTENT_SHELL_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ |