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

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

Issue 701713003: Support embedded plugins with MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor-guest-view-container
Patch Set: 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 #include "third_party/WebKit/public/web/WebPluginPlaceholder.h" 7 #include "third_party/WebKit/public/web/WebPluginPlaceholder.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 const GURL& url) { 191 const GURL& url) {
192 return false; 192 return false;
193 } 193 }
194 194
195 bool ContentRendererClient::IsPluginAllowedToUseDevChannelAPIs() { 195 bool ContentRendererClient::IsPluginAllowedToUseDevChannelAPIs() {
196 return false; 196 return false;
197 } 197 }
198 198
199 BrowserPluginDelegate* ContentRendererClient::CreateBrowserPluginDelegate( 199 BrowserPluginDelegate* ContentRendererClient::CreateBrowserPluginDelegate(
200 RenderFrame* render_frame, 200 RenderFrame* render_frame,
201 const std::string& mime_type) { 201 const std::string& mime_type,
202 const GURL& original_url) {
202 return nullptr; 203 return nullptr;
203 } 204 }
204 205
205 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) { 206 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) {
206 return std::string(); 207 return std::string();
207 } 208 }
208 209
209 } // namespace content 210 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698