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

Unified Diff: ppapi/shared_impl/ppapi_constants.h

Issue 1088763002: Plugin Power Saver: Add comprehensive browser tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0260-plugins-overhaul-prerender-tests
Patch Set: 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
Index: ppapi/shared_impl/ppapi_constants.h
diff --git a/ppapi/shared_impl/ppapi_constants.h b/ppapi/shared_impl/ppapi_constants.h
index dcc9b29de5ec06bf8c7009e301e0f13bcde75b9f..d5b71aadb958b050a5b8f58665c0f819d576fa17 100644
--- a/ppapi/shared_impl/ppapi_constants.h
+++ b/ppapi/shared_impl/ppapi_constants.h
@@ -14,6 +14,14 @@ namespace ppapi {
// used to kill inactive plugins by the embedder host.
const unsigned kKeepaliveThrottleIntervalDefaultMilliseconds = 5000;
+#if defined(OS_WIN)
+const char kPowerSaverTestPluginName[] = "power_saver_test_plugin.dll";
+#elif defined(OS_MACOSX)
+const char kPowerSaverTestPluginName[] = "power_saver_test_plugin.plugin";
+#elif defined(OS_POSIX)
+const char kPowerSaverTestPluginName[] = "libpower_saver_test_plugin.so";
+#endif
+
} // namespace ppapi
#endif // PPAPI_SHARED_IMPL_PPAPI_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698