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

Unified Diff: chrome/common/chrome_paths.cc

Issue 24616002: Clean up a few unused globals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win Created 7 years, 3 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
Index: chrome/common/chrome_paths.cc
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
index 4f6314ad695b41f85acac6a4ed7d3208ea1aa87a..42384813e60a6baa0d831463c3bf341b2114a4b4 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -64,16 +64,10 @@ const base::FilePath::CharType kInternalNaClPluginFileName[] =
FILE_PATH_LITERAL("libppGoogleNaClPluginChrome.so");
#endif
+#if defined(OS_POSIX) && !defined(OS_MACOSX)
+
const base::FilePath::CharType kEffectsPluginFileName[] =
Lei Zhang 2013/09/25 19:13:10 +vrk: Is this going x-platform soon or can we proc
Nico 2013/09/25 19:28:30 If it is, it can be reintroduced then, no? I'd lik
-#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_POSIX) && !defined(OS_MACOSX)
const base::FilePath::CharType kO3DPluginFileName[] =
FILE_PATH_LITERAL("pepper/libppo3dautoplugin.so");

Powered by Google App Engine
This is Rietveld 408576698