| Index: chrome/common/chrome_paths.cc
|
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
|
| index f58680e09665dc587e9859d615c7bec1429e2bed..b5fd5b5db70b4e904487bf1158582758d2fcfa49 100644
|
| --- a/chrome/common/chrome_paths.cc
|
| +++ b/chrome/common/chrome_paths.cc
|
| @@ -66,15 +66,6 @@ const base::FilePath::CharType kPepperFlashSystemBaseDirectory[] =
|
| const base::FilePath::CharType kInternalNaClPluginFileName[] =
|
| FILE_PATH_LITERAL("internal-nacl-plugin");
|
|
|
| -const base::FilePath::CharType kEffectsPluginFileName[] =
|
| -#if defined(OS_WIN)
|
| - FILE_PATH_LITERAL("pepper/libppeffects.dll");
|
| -#elif defined(OS_MACOSX)
|
| - FILE_PATH_LITERAL("pepper/libppeffects.plugin");
|
| -#else // Linux and Chrome OS
|
| - FILE_PATH_LITERAL("pepper/libppeffects.so");
|
| -#endif
|
| -
|
| #if defined(OS_LINUX)
|
| // The path to the external extension <id>.json files.
|
| // /usr/share seems like a good choice, see: http://www.pathname.com/fhs/
|
| @@ -316,11 +307,6 @@ bool PathProvider(int key, base::FilePath* result) {
|
| return false;
|
| cur = cur.Append(chrome::kPepperFlashPluginFilename);
|
| break;
|
| - case chrome::FILE_EFFECTS_PLUGIN:
|
| - if (!GetInternalPluginsDirectory(&cur))
|
| - return false;
|
| - cur = cur.Append(kEffectsPluginFileName);
|
| - break;
|
| // TODO(teravest): Remove this case once the internal NaCl plugin is gone.
|
| // We currently need a path here to look up whether the plugin is disabled
|
| // and what its permissions are.
|
|
|