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

Unified Diff: chrome/common/chrome_paths.cc

Issue 374773002: Remove GTalk/O1D plugins and related code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 5 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/common/chrome_paths.h ('k') | content/browser/ppapi_plugin_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_paths.cc
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
index 3cee502a40ad27df49287838e07968794698d47c..f58680e09665dc587e9859d615c7bec1429e2bed 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -75,16 +75,6 @@ const base::FilePath::CharType kEffectsPluginFileName[] =
FILE_PATH_LITERAL("pepper/libppeffects.so");
#endif
-#if defined(OS_POSIX) && !defined(OS_MACOSX)
-
-const base::FilePath::CharType kO1DPluginFileName[] =
- FILE_PATH_LITERAL("pepper/libppo1d.so");
-
-const base::FilePath::CharType kGTalkPluginFileName[] =
- FILE_PATH_LITERAL("pepper/libppgoogletalk.so");
-
-#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
-
#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/
@@ -375,18 +365,6 @@ bool PathProvider(int key, base::FilePath* result) {
#endif
cur = cur.Append(FILE_PATH_LITERAL("pnacl"));
break;
-#if defined(OS_POSIX) && !defined(OS_MACOSX)
- case chrome::FILE_O1D_PLUGIN:
- if (!PathService::Get(base::DIR_MODULE, &cur))
- return false;
- cur = cur.Append(kO1DPluginFileName);
- break;
- case chrome::FILE_GTALK_PLUGIN:
- if (!PathService::Get(base::DIR_MODULE, &cur))
- return false;
- cur = cur.Append(kGTalkPluginFileName);
- break;
-#endif
#if defined(WIDEVINE_CDM_AVAILABLE) && defined(ENABLE_PEPPER_CDMS)
#if defined(WIDEVINE_CDM_IS_COMPONENT)
case chrome::DIR_COMPONENT_WIDEVINE_CDM:
« no previous file with comments | « chrome/common/chrome_paths.h ('k') | content/browser/ppapi_plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698