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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 const std::string& permission_value, | 311 const std::string& permission_value, |
312 const GURL& origin, | 312 const GURL& origin, |
313 const GURL& embedding_origin) { | 313 const GURL& embedding_origin) { |
314 NOTIMPLEMENTED(); | 314 NOTIMPLEMENTED(); |
315 } | 315 } |
316 | 316 |
317 void WebTestDelegateImpl::ResetPermissions() { | 317 void WebTestDelegateImpl::ResetPermissions() { |
318 NOTIMPLEMENTED(); | 318 NOTIMPLEMENTED(); |
319 } | 319 } |
320 | 320 |
321 bool WebTestDelegateImpl::AddMediaStreamSourceAndTrack( | 321 bool WebTestDelegateImpl::AddMediaStreamVideoSourceAndTrack( |
322 blink::WebMediaStream* stream) { | 322 blink::WebMediaStream* stream) { |
323 NOTIMPLEMENTED(); | 323 NOTIMPLEMENTED(); |
324 return false; | 324 return false; |
| 325 } |
| 326 |
| 327 bool WebTestDelegateImpl::AddMediaStreamAudioSourceAndTrack( |
| 328 blink::WebMediaStream* stream) { |
| 329 NOTIMPLEMENTED(); |
| 330 return false; |
325 } | 331 } |
326 | 332 |
327 cc::SharedBitmapManager* WebTestDelegateImpl::GetSharedBitmapManager() { | 333 cc::SharedBitmapManager* WebTestDelegateImpl::GetSharedBitmapManager() { |
328 NOTIMPLEMENTED(); | 334 NOTIMPLEMENTED(); |
329 return nullptr; | 335 return nullptr; |
330 } | 336 } |
331 | 337 |
332 void WebTestDelegateImpl::DispatchBeforeInstallPromptEvent( | 338 void WebTestDelegateImpl::DispatchBeforeInstallPromptEvent( |
333 int request_id, | 339 int request_id, |
334 const std::vector<std::string>& event_platforms, | 340 const std::vector<std::string>& event_platforms, |
(...skipping 11 matching lines...) Expand all Loading... |
346 const blink::WebPluginParams& params) { | 352 const blink::WebPluginParams& params) { |
347 NOTIMPLEMENTED(); | 353 NOTIMPLEMENTED(); |
348 return nullptr; | 354 return nullptr; |
349 } | 355 } |
350 | 356 |
351 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( | 357 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( |
352 test_runner::WebTestProxyBase* base) { | 358 test_runner::WebTestProxyBase* base) { |
353 } | 359 } |
354 | 360 |
355 } // namespace html_viewer | 361 } // namespace html_viewer |
OLD | NEW |