| Index: third_party/WebKit/Source/modules/bluetooth/NavigatorBluetooth.cpp
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/NavigatorBluetooth.cpp b/third_party/WebKit/Source/modules/bluetooth/NavigatorBluetooth.cpp
|
| index fb291b80f45e3dd283539f24ac95c5faec582e16..43e567aeb323d9b3c9f49b6a5b3fc4cbfe0dfe66 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/NavigatorBluetooth.cpp
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/NavigatorBluetooth.cpp
|
| @@ -11,7 +11,7 @@ namespace blink {
|
|
|
| NavigatorBluetooth& NavigatorBluetooth::from(Navigator& navigator)
|
| {
|
| - NavigatorBluetooth* supplement = static_cast<NavigatorBluetooth*>(HeapSupplement<Navigator>::from(navigator, supplementName()));
|
| + NavigatorBluetooth* supplement = static_cast<NavigatorBluetooth*>(Supplement<Navigator>::from(navigator, supplementName()));
|
| if (!supplement) {
|
| supplement = new NavigatorBluetooth();
|
| provideTo(navigator, supplementName(), supplement);
|
| @@ -34,7 +34,7 @@ Bluetooth* NavigatorBluetooth::bluetooth()
|
| DEFINE_TRACE(NavigatorBluetooth)
|
| {
|
| visitor->trace(m_bluetooth);
|
| - HeapSupplement<Navigator>::trace(visitor);
|
| + Supplement<Navigator>::trace(visitor);
|
| }
|
|
|
| NavigatorBluetooth::NavigatorBluetooth()
|
|
|