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

Unified Diff: chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/pepper/pepper_ext_crx_file_system_renderer_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc
diff --git a/chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc b/chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc
index d96000e3cac75fb7ea5b7ba4fe44893aece433ad..c9ac4fc708732b9c2111c20c361d93616fba4095 100644
--- a/chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc
+++ b/chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc
@@ -5,6 +5,7 @@
#include "chrome/renderer/pepper/chrome_renderer_pepper_host_factory.h"
#include "base/logging.h"
+#include "chrome/renderer/pepper/pepper_ext_crx_file_system_renderer_host.h"
#include "chrome/renderer/pepper/pepper_extensions_common_host.h"
#include "chrome/renderer/pepper/pepper_flash_font_file_host.h"
#include "chrome/renderer/pepper/pepper_flash_fullscreen_host.h"
@@ -104,6 +105,9 @@ ChromeRendererPepperHostFactory::CreateResourceHost(
return scoped_ptr<ResourceHost>(new PepperPDFHost(
host_, instance, params.pp_resource()));
}
+ case PpapiHostMsg_Ext_CrxFileSystem_Create::ID:
yzshen1 2013/05/01 17:45:10 Please use {}
victorhsieh 2013/05/02 18:59:06 Done.
+ return scoped_ptr<ResourceHost>(new PepperExtCrxFileSystemRendererHost(
+ host_, instance, params.pp_resource()));
}
}
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/pepper/pepper_ext_crx_file_system_renderer_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698