| Index: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| index b6ca46a5dfc1176241089a593432238cf689df18..f69fc34e1081e0c7524371a3de5f3fae7a047132 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| @@ -12,6 +12,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "base/values.h"
|
| #include "chrome/browser/chromeos/bluetooth/bluetooth_adapter.h"
|
| +#include "chrome/browser/chromeos/bluetooth/bluetooth_adapter_factory.h"
|
| #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h"
|
| #include "content/public/browser/web_ui.h"
|
| #include "grit/chromium_strings.h"
|
| @@ -166,7 +167,7 @@ void BluetoothOptionsHandler::RegisterMessages() {
|
| }
|
|
|
| void BluetoothOptionsHandler::InitializeHandler() {
|
| - adapter_ = BluetoothAdapter::DefaultAdapter();
|
| + adapter_ = BluetoothAdapterFactory::DefaultAdapter();
|
| adapter_->AddObserver(this);
|
| }
|
|
|
|
|