Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: components/html_viewer/web_test_delegate_impl.cc

Issue 1448203002: Add layout tests for the audio component of MediaStream Recording. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: peter@'s comments Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « components/html_viewer/web_test_delegate_impl.h ('k') | components/test_runner/mock_web_user_media_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698