| 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> |
| 8 |
| 7 #include <string> | 9 #include <string> |
| 8 | 10 |
| 9 #include "base/json/json_writer.h" | 11 #include "base/json/json_writer.h" |
| 10 #include "base/json/string_escape.h" | 12 #include "base/json/string_escape.h" |
| 11 #include "base/logging.h" | 13 #include "base/logging.h" |
| 12 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 13 #include "base/values.h" | 15 #include "base/values.h" |
| 14 #include "components/test_runner/accessibility_controller.h" | 16 #include "components/test_runner/accessibility_controller.h" |
| 15 #include "components/test_runner/app_banner_client.h" | 17 #include "components/test_runner/app_banner_client.h" |
| 16 #include "components/test_runner/event_sender.h" | 18 #include "components/test_runner/event_sender.h" |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 if (!theme_engine_.get()) | 183 if (!theme_engine_.get()) |
| 182 theme_engine_.reset(new MockWebThemeEngine()); | 184 theme_engine_.reset(new MockWebThemeEngine()); |
| 183 return theme_engine_.get(); | 185 return theme_engine_.get(); |
| 184 } | 186 } |
| 185 | 187 |
| 186 AppBannerClient* TestInterfaces::GetAppBannerClient() { | 188 AppBannerClient* TestInterfaces::GetAppBannerClient() { |
| 187 return app_banner_client_; | 189 return app_banner_client_; |
| 188 } | 190 } |
| 189 | 191 |
| 190 } // namespace test_runner | 192 } // namespace test_runner |
| OLD | NEW |