| Index: content/shell/browser/blink_test_controller.cc
|
| diff --git a/content/shell/browser/blink_test_controller.cc b/content/shell/browser/blink_test_controller.cc
|
| index 97c533737119c48cf36c4851488f14c05fc2a0e0..eb15b2d986733cd20868c79ce8a9010335a667e8 100644
|
| --- a/content/shell/browser/blink_test_controller.cc
|
| +++ b/content/shell/browser/blink_test_controller.cc
|
| @@ -727,15 +727,16 @@ void BlinkTestController::OnSetBluetoothManualChooser(bool enable) {
|
| }
|
| }
|
|
|
| -void BlinkTestController::OnGetBluetoothManualChooserEvents(
|
| - std::vector<std::string>* events) {
|
| +void BlinkTestController::OnGetBluetoothManualChooserEvents() {
|
| if (!bluetooth_chooser_factory_) {
|
| printer_->AddErrorMessage(
|
| "FAIL: Must call setBluetoothManualChooser before "
|
| "getBluetoothManualChooserEvents.");
|
| return;
|
| }
|
| - *events = bluetooth_chooser_factory_->GetAndResetEvents();
|
| + Send(new ShellViewMsg_ReplyBluetoothManualChooserEvents(
|
| + main_window_->web_contents()->GetRoutingID(),
|
| + bluetooth_chooser_factory_->GetAndResetEvents()));
|
| }
|
|
|
| void BlinkTestController::OnSendBluetoothManualChooserEvent(
|
|
|