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

Side by Side Diff: content/renderer/mock_content_renderer_client.cc

Issue 8616008: Remove IsProtocolSupportedForMedia (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile Created 9 years, 1 month 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/mock_content_renderer_client.h ('k') | content/renderer/renderer_glue.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "content/renderer/mock_content_renderer_client.h" 5 #include "content/renderer/mock_content_renderer_client.h"
6 6
7 #include <string> 7 #include <string>
8 #include "v8/include/v8.h" 8 #include "v8/include/v8.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 } 111 }
112 112
113 bool MockContentRendererClient::HandleSetCookieRequest( 113 bool MockContentRendererClient::HandleSetCookieRequest(
114 RenderView* sender, 114 RenderView* sender,
115 const GURL& url, 115 const GURL& url,
116 const GURL& first_party_for_cookies, 116 const GURL& first_party_for_cookies,
117 const std::string& value) { 117 const std::string& value) {
118 return false; 118 return false;
119 } 119 }
120 120
121 bool MockContentRendererClient::IsProtocolSupportedForMedia(const GURL& url) {
122 return false;
123 }
124
125 void MockContentRendererClient::RegisterPPAPIInterfaceFactories( 121 void MockContentRendererClient::RegisterPPAPIInterfaceFactories(
126 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { 122 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) {
127 } 123 }
128 124
129 } // namespace content 125 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/mock_content_renderer_client.h ('k') | content/renderer/renderer_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698