diff options
Diffstat (limited to 'chrome/common/chrome_paths.cc')
-rw-r--r-- | chrome/common/chrome_paths.cc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc index af56236..9537376 100644 --- a/chrome/common/chrome_paths.cc +++ b/chrome/common/chrome_paths.cc @@ -50,16 +50,6 @@ const base::FilePath::CharType kPepperFlashDebuggerBaseDirectory[] = FILE_PATH_LITERAL("Macromed\\Flash"); #endif -// File name of the internal PDF plugin on different platforms. -const base::FilePath::CharType kInternalPDFPluginFileName[] = -#if defined(OS_WIN) - FILE_PATH_LITERAL("pdf.dll"); -#elif defined(OS_MACOSX) - FILE_PATH_LITERAL("PDF.plugin"); -#else // Linux and Chrome OS - FILE_PATH_LITERAL("libpdf.so"); -#endif - const base::FilePath::CharType kInternalNaClPluginFileName[] = FILE_PATH_LITERAL("internal-nacl-plugin"); @@ -294,11 +284,6 @@ bool PathProvider(int key, base::FilePath* result) { return false; cur = cur.Append(chrome::kPepperFlashPluginFilename); break; - case chrome::FILE_PDF_PLUGIN: - if (!GetInternalPluginsDirectory(&cur)) - return false; - cur = cur.Append(kInternalPDFPluginFileName); - break; case chrome::FILE_EFFECTS_PLUGIN: if (!GetInternalPluginsDirectory(&cur)) return false; |