Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: components/test_runner/test_runner.h

Issue 2147633003: PlzNavigate: Eliminate test_runner bailing out of layout tests too early (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix same-doc navigation + build, add passing tests Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ 5 #ifndef COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ 6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <deque> 10 #include <deque>
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 const base::Callback<void(const SkBitmap&)>& callback) override; 92 const base::Callback<void(const SkBitmap&)>& callback) override;
93 void ReplicateLayoutTestRuntimeFlagsChanges( 93 void ReplicateLayoutTestRuntimeFlagsChanges(
94 const base::DictionaryValue& changed_values) override; 94 const base::DictionaryValue& changed_values) override;
95 bool HasCustomTextDump(std::string* custom_text_dump) const override; 95 bool HasCustomTextDump(std::string* custom_text_dump) const override;
96 bool ShouldDumpBackForwardList() const override; 96 bool ShouldDumpBackForwardList() const override;
97 blink::WebContentSettingsClient* GetWebContentSettings() const override; 97 blink::WebContentSettingsClient* GetWebContentSettings() const override;
98 void InitializeWebViewWithMocks(blink::WebView* web_view) override; 98 void InitializeWebViewWithMocks(blink::WebView* web_view) override;
99 void SetFocus(blink::WebView* web_view, bool focus) override; 99 void SetFocus(blink::WebView* web_view, bool focus) override;
100 100
101 // Methods used by WebViewTestClient and WebFrameTestClient. 101 // Methods used by WebViewTestClient and WebFrameTestClient.
102 void OnNavigationBegin() { is_navigating_ = true; }
103 void OnNavigationEnd() { is_navigating_ = false; }
102 void OnAnimationScheduled(blink::WebWidget* widget); 104 void OnAnimationScheduled(blink::WebWidget* widget);
103 void OnAnimationBegun(blink::WebWidget* widget); 105 void OnAnimationBegun(blink::WebWidget* widget);
104 std::string GetAcceptLanguages() const; 106 std::string GetAcceptLanguages() const;
105 bool shouldStayOnPageAfterHandlingBeforeUnload() const; 107 bool shouldStayOnPageAfterHandlingBeforeUnload() const;
106 MockScreenOrientationClient* getMockScreenOrientationClient(); 108 MockScreenOrientationClient* getMockScreenOrientationClient();
107 MockWebUserMediaClient* getMockWebUserMediaClient(); 109 MockWebUserMediaClient* getMockWebUserMediaClient();
108 MockWebSpeechRecognizer* getMockWebSpeechRecognizer(); 110 MockWebSpeechRecognizer* getMockWebSpeechRecognizer();
109 bool isPrinting() const; 111 bool isPrinting() const;
110 bool shouldDumpAsCustomText() const; 112 bool shouldDumpAsCustomText() const;
111 std:: string customDumpText() const; 113 std:: string customDumpText() const;
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 blink::WebView* main_view_; 609 blink::WebView* main_view_;
608 610
609 // This is non-0 IFF a load is in progress. 611 // This is non-0 IFF a load is in progress.
610 blink::WebFrame* top_loading_frame_; 612 blink::WebFrame* top_loading_frame_;
611 613
612 // WebContentSettingsClient mock object. 614 // WebContentSettingsClient mock object.
613 std::unique_ptr<MockContentSettingsClient> mock_content_settings_client_; 615 std::unique_ptr<MockContentSettingsClient> mock_content_settings_client_;
614 616
615 bool use_mock_theme_; 617 bool use_mock_theme_;
616 618
619 // This is true in the period between the start of a navigation and when that
620 // navigation commits or fails. Note that when browser-side navigation is
621 // enabled there is an arbitrary gap between these two events.
clamy 2016/07/19 13:50:35 Wouldn't that be the case in the current architect
blundell 2016/07/21 10:02:18 Yes, good point. The PlzNavigate-specific gap is b
622 bool is_navigating_;
623
617 std::unique_ptr<MockCredentialManagerClient> credential_manager_client_; 624 std::unique_ptr<MockCredentialManagerClient> credential_manager_client_;
618 std::unique_ptr<MockScreenOrientationClient> mock_screen_orientation_client_; 625 std::unique_ptr<MockScreenOrientationClient> mock_screen_orientation_client_;
619 std::unique_ptr<MockWebSpeechRecognizer> speech_recognizer_; 626 std::unique_ptr<MockWebSpeechRecognizer> speech_recognizer_;
620 std::unique_ptr<MockWebUserMediaClient> user_media_client_; 627 std::unique_ptr<MockWebUserMediaClient> user_media_client_;
621 std::unique_ptr<SpellCheckClient> spellcheck_; 628 std::unique_ptr<SpellCheckClient> spellcheck_;
622 629
623 // Number of currently active color choosers. 630 // Number of currently active color choosers.
624 int chooser_count_; 631 int chooser_count_;
625 632
626 // Captured drag image. 633 // Captured drag image.
(...skipping 10 matching lines...) Expand all
637 bool is_web_platform_tests_mode_; 644 bool is_web_platform_tests_mode_;
638 645
639 base::WeakPtrFactory<TestRunner> weak_factory_; 646 base::WeakPtrFactory<TestRunner> weak_factory_;
640 647
641 DISALLOW_COPY_AND_ASSIGN(TestRunner); 648 DISALLOW_COPY_AND_ASSIGN(TestRunner);
642 }; 649 };
643 650
644 } // namespace test_runner 651 } // namespace test_runner
645 652
646 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ 653 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
OLDNEW
« no previous file with comments | « no previous file | components/test_runner/test_runner.cc » ('j') | components/test_runner/test_runner.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698