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

Unified Diff: content/public/renderer/content_renderer_client.h

Issue 376033002: Adding MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pending-zork-patch2
Patch Set: address comments Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/public/renderer/content_renderer_client.h
diff --git a/content/public/renderer/content_renderer_client.h b/content/public/renderer/content_renderer_client.h
index ada672f46ecc109e9fa3f853426a8420e8d0f26a..e0a146529631237406ce05d6629fd6d8e12d3cdd 100644
--- a/content/public/renderer/content_renderer_client.h
+++ b/content/public/renderer/content_renderer_client.h
@@ -50,6 +50,7 @@ struct WebURLError;
}
namespace content {
+class BrowserPluginDelegate;
class DocumentState;
class RenderFrame;
class RenderView;
@@ -101,6 +102,10 @@ class CONTENT_EXPORT ContentRendererClient {
RenderFrame* render_frame,
const base::FilePath& plugin_path);
+ virtual BrowserPluginDelegate* CreateBrowserPluginDelegate(
jam 2014/09/03 21:55:52 nit: every other method in this class is documente
lazyboy 2014/09/04 18:59:33 Done.
+ RenderFrame* render_frame,
+ const std::string& mime_type);
+
// Returns true if the embedder has an error page to show for the given http
// status code. If so |error_domain| should be set to according to WebURLError
// and the embedder's GetNavigationErrorHtml will be called afterwards to get

Powered by Google App Engine
This is Rietveld 408576698