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

Unified Diff: chrome/browser/plugins/plugin_prefs_unittest.cc

Issue 67923002: Fixes for -Wunused-function on Linux, Android and ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 1 month 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/browser/plugins/plugin_prefs_unittest.cc
diff --git a/chrome/browser/plugins/plugin_prefs_unittest.cc b/chrome/browser/plugins/plugin_prefs_unittest.cc
index 397eef54df483980642ddf3641e503db60443f05..7f86194cfcdae9171e73093d4499bcd8523b8d10 100644
--- a/chrome/browser/plugins/plugin_prefs_unittest.cc
+++ b/chrome/browser/plugins/plugin_prefs_unittest.cc
@@ -31,6 +31,7 @@ void CanEnablePluginCallback(const base::Closure& quit_closure,
quit_closure.Run();
}
+#if !(defined(OS_LINUX) && defined(USE_AURA))
base::FilePath GetComponentUpdatedPepperFlashPath(
const base::FilePath::StringType& version) {
base::FilePath path;
@@ -46,6 +47,7 @@ base::FilePath GetBundledPepperFlashPath() {
EXPECT_TRUE(PathService::Get(chrome::FILE_PEPPER_FLASH_PLUGIN, &path));
return path;
}
+#endif
Nico 2013/11/10 05:07:09 // !(defined(OS_LINUX) && defined(USE_AURA))
hans 2013/11/11 19:29:51 Done.
void GotPlugins(const base::Closure& quit_closure,
const std::vector<content::WebPluginInfo>& plugins) {

Powered by Google App Engine
This is Rietveld 408576698