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

Side by Side Diff: content/public/renderer/content_renderer_client.cc

Issue 665343002: Move KeySystemInfo to media. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase only Created 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/public/renderer/content_renderer_client.h" 5 #include "content/public/renderer/content_renderer_client.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { 9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() {
10 return NULL; 10 return NULL;
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 bool ContentRendererClient::IsExternalPepperPlugin( 148 bool ContentRendererClient::IsExternalPepperPlugin(
149 const std::string& module_name) { 149 const std::string& module_name) {
150 return false; 150 return false;
151 } 151 }
152 152
153 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) { 153 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) {
154 return false; 154 return false;
155 } 155 }
156 156
157 void ContentRendererClient::AddKeySystems( 157 void ContentRendererClient::AddKeySystems(
158 std::vector<KeySystemInfo>* key_systems) { 158 std::vector<media::KeySystemInfo>* key_systems) {
159 } 159 }
160 160
161 bool ContentRendererClient::ShouldReportDetailedMessageForSource( 161 bool ContentRendererClient::ShouldReportDetailedMessageForSource(
162 const base::string16& source) const { 162 const base::string16& source) const {
163 return false; 163 return false;
164 } 164 }
165 165
166 bool ContentRendererClient::ShouldEnableSiteIsolationPolicy() const { 166 bool ContentRendererClient::ShouldEnableSiteIsolationPolicy() const {
167 return true; 167 return true;
168 } 168 }
(...skipping 21 matching lines...) Expand all
190 RenderFrame* render_frame, 190 RenderFrame* render_frame,
191 const std::string& mime_type) { 191 const std::string& mime_type) {
192 return NULL; 192 return NULL;
193 } 193 }
194 194
195 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) { 195 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) {
196 return std::string(); 196 return std::string();
197 } 197 }
198 198
199 } // namespace content 199 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/public/renderer/key_system_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698