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