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

Unified Diff: chrome/renderer/render_thread.cc

Issue 339093: Change notification cmd line enabling to use the new RuntimeEnabledFeatures c... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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/render_messages.h ('k') | webkit/api/public/WebRuntimeFeatures.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_thread.cc
===================================================================
--- chrome/renderer/render_thread.cc (revision 30646)
+++ chrome/renderer/render_thread.cc (working copy)
@@ -528,6 +528,12 @@
WebRuntimeFeatures::enableDatabase(
command_line.HasSwitch(switches::kEnableDatabases));
+
+#if defined(OS_WIN)
+ // We don't yet support notifications on non-Windows, so hide it from pages.
+ WebRuntimeFeatures::enableNotifications(
+ command_line.HasSwitch(switches::kEnableDesktopNotifications));
+#endif
}
void RenderThread::IdleHandler() {
« no previous file with comments | « chrome/common/render_messages.h ('k') | webkit/api/public/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698