| 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 #include "components/html_viewer/web_test_delegate_impl.h" | 5 #include "components/html_viewer/web_test_delegate_impl.h" |
| 6 | 6 |
| 7 #include <iostream> | 7 #include <iostream> |
| 8 | 8 |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "cc/layers/texture_layer.h" | 10 #include "cc/layers/texture_layer.h" |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 NOTIMPLEMENTED(); | 327 NOTIMPLEMENTED(); |
| 328 return false; | 328 return false; |
| 329 } | 329 } |
| 330 | 330 |
| 331 bool WebTestDelegateImpl::AddMediaStreamAudioSourceAndTrack( | 331 bool WebTestDelegateImpl::AddMediaStreamAudioSourceAndTrack( |
| 332 blink::WebMediaStream* stream) { | 332 blink::WebMediaStream* stream) { |
| 333 NOTIMPLEMENTED(); | 333 NOTIMPLEMENTED(); |
| 334 return false; | 334 return false; |
| 335 } | 335 } |
| 336 | 336 |
| 337 void WebTestDelegateImpl::AddMediaStream(blink::WebMediaStream* stream) { |
| 338 NOTIMPLEMENTED(); |
| 339 } |
| 340 |
| 337 cc::SharedBitmapManager* WebTestDelegateImpl::GetSharedBitmapManager() { | 341 cc::SharedBitmapManager* WebTestDelegateImpl::GetSharedBitmapManager() { |
| 338 NOTIMPLEMENTED(); | 342 NOTIMPLEMENTED(); |
| 339 return nullptr; | 343 return nullptr; |
| 340 } | 344 } |
| 341 | 345 |
| 342 void WebTestDelegateImpl::DispatchBeforeInstallPromptEvent( | 346 void WebTestDelegateImpl::DispatchBeforeInstallPromptEvent( |
| 343 int request_id, | 347 int request_id, |
| 344 const std::vector<std::string>& event_platforms, | 348 const std::vector<std::string>& event_platforms, |
| 345 const base::Callback<void(bool)>& callback) { | 349 const base::Callback<void(bool)>& callback) { |
| 346 NOTIMPLEMENTED(); | 350 NOTIMPLEMENTED(); |
| 347 } | 351 } |
| 348 | 352 |
| 349 void WebTestDelegateImpl::ResolveBeforeInstallPromptPromise(int request_id, | 353 void WebTestDelegateImpl::ResolveBeforeInstallPromptPromise(int request_id, |
| 350 const std::string& platform) { | 354 const std::string& platform) { |
| 351 NOTIMPLEMENTED(); | 355 NOTIMPLEMENTED(); |
| 352 } | 356 } |
| 353 | 357 |
| 354 blink::WebPlugin* WebTestDelegateImpl::CreatePluginPlaceholder( | 358 blink::WebPlugin* WebTestDelegateImpl::CreatePluginPlaceholder( |
| 355 blink::WebLocalFrame* frame, | 359 blink::WebLocalFrame* frame, |
| 356 const blink::WebPluginParams& params) { | 360 const blink::WebPluginParams& params) { |
| 357 NOTIMPLEMENTED(); | 361 NOTIMPLEMENTED(); |
| 358 return nullptr; | 362 return nullptr; |
| 359 } | 363 } |
| 360 | 364 |
| 361 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( | 365 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( |
| 362 test_runner::WebTestProxyBase* base) { | 366 test_runner::WebTestProxyBase* base) { |
| 363 } | 367 } |
| 364 | 368 |
| 365 } // namespace html_viewer | 369 } // namespace html_viewer |
| OLD | NEW |