| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_WEB_VIEW__TEST_RUNNER_TEST_RUNNER_APPLICATION_DELEGATE_H_ | 5 #ifndef COMPONENTS_WEB_VIEW__TEST_RUNNER_TEST_RUNNER_APPLICATION_DELEGATE_H_ |
| 6 #define COMPONENTS_WEB_VIEW__TEST_RUNNER_TEST_RUNNER_APPLICATION_DELEGATE_H_ | 6 #define COMPONENTS_WEB_VIEW__TEST_RUNNER_TEST_RUNNER_APPLICATION_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "components/test_runner/test_info_extractor.h" | 10 #include "components/test_runner/test_info_extractor.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 mojo::ApplicationConnection* connection) override; | 45 mojo::ApplicationConnection* connection) override; |
| 46 | 46 |
| 47 // mojo::ViewTreeDelegate: | 47 // mojo::ViewTreeDelegate: |
| 48 void OnEmbed(mojo::View* root) override; | 48 void OnEmbed(mojo::View* root) override; |
| 49 void OnConnectionLost(mojo::ViewTreeConnection* connection) override; | 49 void OnConnectionLost(mojo::ViewTreeConnection* connection) override; |
| 50 | 50 |
| 51 // mojom::WebViewClient: | 51 // mojom::WebViewClient: |
| 52 void TopLevelNavigate(mojo::URLRequestPtr request) override; | 52 void TopLevelNavigate(mojo::URLRequestPtr request) override; |
| 53 void LoadingStateChanged(bool is_loading) override; | 53 void LoadingStateChanged(bool is_loading) override; |
| 54 void ProgressChanged(double progress) override; | 54 void ProgressChanged(double progress) override; |
| 55 void BackForwardChanged(mojom::ButtonState back_button, | |
| 56 mojom::ButtonState forward_button) override; | |
| 57 void TitleChanged(const mojo::String& title) override; | 55 void TitleChanged(const mojo::String& title) override; |
| 58 | 56 |
| 59 // LayoutTestRunner: | 57 // LayoutTestRunner: |
| 60 void TestFinished() override; | 58 void TestFinished() override; |
| 61 | 59 |
| 62 // mojo::InterfaceFactory<LayoutTestRunner>: | 60 // mojo::InterfaceFactory<LayoutTestRunner>: |
| 63 void Create(mojo::ApplicationConnection* connection, | 61 void Create(mojo::ApplicationConnection* connection, |
| 64 mojo::InterfaceRequest<LayoutTestRunner> request) override; | 62 mojo::InterfaceRequest<LayoutTestRunner> request) override; |
| 65 | 63 |
| 66 mojo::ApplicationImpl* app_; | 64 mojo::ApplicationImpl* app_; |
| 67 mojo::ViewTreeHostPtr host_; | 65 mojo::ViewTreeHostPtr host_; |
| 68 | 66 |
| 69 mojo::View* root_; | 67 mojo::View* root_; |
| 70 mojo::View* content_; | 68 mojo::View* content_; |
| 71 scoped_ptr<WebView> web_view_; | 69 scoped_ptr<WebView> web_view_; |
| 72 | 70 |
| 73 scoped_ptr<test_runner::TestInfoExtractor> test_extractor_; | 71 scoped_ptr<test_runner::TestInfoExtractor> test_extractor_; |
| 74 | 72 |
| 75 mojo::WeakBindingSet<LayoutTestRunner> layout_test_runner_; | 73 mojo::WeakBindingSet<LayoutTestRunner> layout_test_runner_; |
| 76 | 74 |
| 77 DISALLOW_COPY_AND_ASSIGN(TestRunnerApplicationDelegate); | 75 DISALLOW_COPY_AND_ASSIGN(TestRunnerApplicationDelegate); |
| 78 }; | 76 }; |
| 79 | 77 |
| 80 } // namespace web_view | 78 } // namespace web_view |
| 81 | 79 |
| 82 #endif // COMPONENTS_WEB_VIEW__TEST_RUNNER_TEST_RUNNER_APPLICATION_DELEGATE_H_ | 80 #endif // COMPONENTS_WEB_VIEW__TEST_RUNNER_TEST_RUNNER_APPLICATION_DELEGATE_H_ |
| OLD | NEW |