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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1858293002: bluetooth: Enable Web Bluetooth on experimental framework (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Created 4 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: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index b3425b0d72e0ed354646da8c802154312fdf1f17..42541f1e0000cfdc385d315e91f108469ae06691 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -1054,8 +1054,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
bool enable_web_bluetooth =
browser_command_line.HasSwitch(switches::kEnableWebBluetooth);
#if defined(OS_CHROMEOS) || defined(OS_ANDROID)
-// TODO(https://crbug.com/584113) Enable Web Bluetooth Experiment.
-// enable_web_bluetooth = true;
+ enable_web_bluetooth = true;
#endif
if (enable_web_bluetooth) {

Powered by Google App Engine
This is Rietveld 408576698