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

Unified Diff: ui/snapshot/test/run_all_unittests.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: ui/snapshot/test/run_all_unittests.cc
diff --git a/ui/snapshot/test/run_all_unittests.cc b/ui/snapshot/test/run_all_unittests.cc
index 1dd759f488301ce05e67dd2ff3160b4db92a1fa7..b2777d89b35e78abcc82ba3d945fac0fc762dac9 100644
--- a/ui/snapshot/test/run_all_unittests.cc
+++ b/ui/snapshot/test/run_all_unittests.cc
@@ -16,9 +16,11 @@ class NoAtExitBaseTestSuite : public base::TestSuite {
}
};
+#if !defined(USE_AURA) && defined(OS_ANDROID)
Nico 2013/11/10 05:07:09 Just "if !defined(USE_ARUA)", right? No, OS_ANDROI
hans 2013/11/11 19:29:51 Done. My brain was reading the #endif at line 37 a
int RunTestSuite(int argc, char** argv) {
return NoAtExitBaseTestSuite(argc, argv).Run();
}
+#endif
Nico 2013/11/10 05:07:09 // defined…
hans 2013/11/11 19:29:51 Done.
} // namespace

Powered by Google App Engine
This is Rietveld 408576698