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

Unified Diff: content/shell/browser/layout_test/blink_test_controller.cc

Issue 2577183002: Add UMA for the number of devices in the chooser when a device is paired (Closed)
Patch Set: fixed android build Created 4 years 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/shell/browser/layout_test/blink_test_controller.cc
diff --git a/content/shell/browser/layout_test/blink_test_controller.cc b/content/shell/browser/layout_test/blink_test_controller.cc
index bf4e545828ba743c3941d8f95f2ac4eecd5bcef9..60b3759d5062eb5cc69ede198afa35b762df47ef 100644
--- a/content/shell/browser/layout_test/blink_test_controller.cc
+++ b/content/shell/browser/layout_test/blink_test_controller.cc
@@ -404,10 +404,11 @@ bool BlinkTestController::IsMainWindow(WebContents* web_contents) const {
std::unique_ptr<BluetoothChooser> BlinkTestController::RunBluetoothChooser(
RenderFrameHost* frame,
- const BluetoothChooser::EventHandler& event_handler) {
+ const BluetoothChooser::EventHandler& event_handler,
+ bool accept_all_devices) {
if (bluetooth_chooser_factory_) {
- return bluetooth_chooser_factory_->RunBluetoothChooser(frame,
- event_handler);
+ return bluetooth_chooser_factory_->RunBluetoothChooser(frame, event_handler,
+ accept_all_devices);
}
return base::MakeUnique<LayoutTestFirstDeviceBluetoothChooser>(event_handler);
}

Powered by Google App Engine
This is Rietveld 408576698