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

Side by Side Diff: content/shell/renderer/test_runner/web_test_proxy.h

Issue 364123002: [Cross-Site Isolation] Migrate entire MediaStream verticals to be per-RenderFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: It's random enough. + REBASE Created 6 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 if (!WebTestProxyBase::CreateView( 340 if (!WebTestProxyBase::CreateView(
341 creator, request, features, frame_name, policy, suppress_opener)) 341 creator, request, features, frame_name, policy, suppress_opener))
342 return 0; 342 return 0;
343 return Base::createView( 343 return Base::createView(
344 creator, request, features, frame_name, policy, suppress_opener); 344 creator, request, features, frame_name, policy, suppress_opener);
345 } 345 }
346 virtual void setStatusText(const blink::WebString& text) { 346 virtual void setStatusText(const blink::WebString& text) {
347 WebTestProxyBase::SetStatusText(text); 347 WebTestProxyBase::SetStatusText(text);
348 Base::setStatusText(text); 348 Base::setStatusText(text);
349 } 349 }
350 virtual blink::WebUserMediaClient* userMediaClient() {
351 return WebTestProxyBase::GetUserMediaClient();
352 }
353 virtual void printPage(blink::WebLocalFrame* frame) { 350 virtual void printPage(blink::WebLocalFrame* frame) {
354 WebTestProxyBase::PrintPage(frame); 351 WebTestProxyBase::PrintPage(frame);
355 } 352 }
356 virtual blink::WebSpeechRecognizer* speechRecognizer() { 353 virtual blink::WebSpeechRecognizer* speechRecognizer() {
357 return WebTestProxyBase::GetSpeechRecognizer(); 354 return WebTestProxyBase::GetSpeechRecognizer();
358 } 355 }
359 virtual bool requestPointerLock() { 356 virtual bool requestPointerLock() {
360 return WebTestProxyBase::RequestPointerLock(); 357 return WebTestProxyBase::RequestPointerLock();
361 } 358 }
362 virtual void requestPointerUnlock() { 359 virtual void requestPointerUnlock() {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 return WebTestProxyBase::GetWebPushClient(); 395 return WebTestProxyBase::GetWebPushClient();
399 } 396 }
400 397
401 private: 398 private:
402 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); 399 DISALLOW_COPY_AND_ASSIGN(WebTestProxy);
403 }; 400 };
404 401
405 } // namespace content 402 } // namespace content
406 403
407 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ 404 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698