| Index: third_party/WebKit/Source/modules/sensor/Sensor.cpp
|
| diff --git a/third_party/WebKit/Source/modules/sensor/Sensor.cpp b/third_party/WebKit/Source/modules/sensor/Sensor.cpp
|
| index e930490d6e17f30de0a88fb59bfecb10a52d4d89..6cc78258d158e4d1653a305dec9273a9c06c496b 100644
|
| --- a/third_party/WebKit/Source/modules/sensor/Sensor.cpp
|
| +++ b/third_party/WebKit/Source/modules/sensor/Sensor.cpp
|
| @@ -279,8 +279,9 @@ void Sensor::updateState(Sensor::SensorState newState) {
|
| // frequency hint.
|
| m_lastUpdateTimestamp = WTF::monotonicallyIncreasingTime();
|
| TaskRunnerHelper::get(TaskType::Sensor, getExecutionContext())
|
| - ->postTask(BLINK_FROM_HERE, WTF::bind(&Sensor::notifyOnActivate,
|
| - wrapWeakPersistent(this)));
|
| + ->postTask(
|
| + BLINK_FROM_HERE,
|
| + WTF::bind(&Sensor::notifyOnActivate, wrapWeakPersistent(this)));
|
| }
|
|
|
| m_state = newState;
|
|
|