| OLD | NEW |
| 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 #include "components/test_runner/test_interfaces.h" | 5 #include "components/test_runner/test_interfaces.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "third_party/WebKit/public/web/WebView.h" | 24 #include "third_party/WebKit/public/web/WebView.h" |
| 25 | 25 |
| 26 namespace test_runner { | 26 namespace test_runner { |
| 27 | 27 |
| 28 TestInterfaces::TestInterfaces() | 28 TestInterfaces::TestInterfaces() |
| 29 : test_runner_(new TestRunner(this)), | 29 : test_runner_(new TestRunner(this)), |
| 30 delegate_(nullptr), | 30 delegate_(nullptr), |
| 31 main_view_(nullptr) { | 31 main_view_(nullptr) { |
| 32 blink::setLayoutTestMode(true); | 32 blink::setLayoutTestMode(true); |
| 33 // NOTE: please don't put feature specific enable flags here, | 33 // NOTE: please don't put feature specific enable flags here, |
| 34 // instead add them to RuntimeEnabledFeatures.in | 34 // instead add them to RuntimeEnabledFeatures.json5 |
| 35 | 35 |
| 36 ResetAll(); | 36 ResetAll(); |
| 37 } | 37 } |
| 38 | 38 |
| 39 TestInterfaces::~TestInterfaces() { | 39 TestInterfaces::~TestInterfaces() { |
| 40 // gamepad_controller_ doesn't depend on WebView. | 40 // gamepad_controller_ doesn't depend on WebView. |
| 41 test_runner_->SetMainView(nullptr); | 41 test_runner_->SetMainView(nullptr); |
| 42 | 42 |
| 43 // gamepad_controller_ ignores SetDelegate(nullptr) | 43 // gamepad_controller_ ignores SetDelegate(nullptr) |
| 44 test_runner_->SetDelegate(nullptr); | 44 test_runner_->SetDelegate(nullptr); |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 blink::WebThemeEngine* TestInterfaces::GetThemeEngine() { | 153 blink::WebThemeEngine* TestInterfaces::GetThemeEngine() { |
| 154 if (!test_runner_->UseMockTheme()) | 154 if (!test_runner_->UseMockTheme()) |
| 155 return 0; | 155 return 0; |
| 156 if (!theme_engine_.get()) | 156 if (!theme_engine_.get()) |
| 157 theme_engine_.reset(new MockWebThemeEngine()); | 157 theme_engine_.reset(new MockWebThemeEngine()); |
| 158 return theme_engine_.get(); | 158 return theme_engine_.get(); |
| 159 } | 159 } |
| 160 | 160 |
| 161 } // namespace test_runner | 161 } // namespace test_runner |
| OLD | NEW |