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

Unified Diff: chrome/common/pepper_plugin_registry.cc

Issue 3081013: Fix for pdf plugin not loaded in the linux sandbox. Also, not showing... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/pepper_plugin_registry.cc
===================================================================
--- chrome/common/pepper_plugin_registry.cc (revision 54779)
+++ chrome/common/pepper_plugin_registry.cc (working copy)
@@ -94,8 +94,10 @@
void PepperPluginRegistry::GetExtraPlugins(
std::vector<PepperPluginInfo>* plugins) {
FilePath path;
- if (PathService::Get(chrome::FILE_PDF_PLUGIN, &path) &&
- file_util::PathExists(path)) {
+ // We can't check for path existance here, since we are in the sandbox.
+ // If plugin is missing, it will later fail to
+ // load the library and the missing plugin message will be displayed.
+ if (PathService::Get(chrome::FILE_PDF_PLUGIN, &path)) {
PepperPluginInfo pdf;
pdf.path = path;
pdf.name = "Chrome PDF Viewer";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698