| Index: third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.cpp
|
| diff --git a/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.cpp b/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.cpp
|
| index 5e7e0d9b8f0177e895fbefe3c9ec2a9cafaa3a7d..71268b9a0afc628ff6fc6962f6a65d177ce9c2ef 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.cpp
|
| +++ b/third_party/WebKit/Source/modules/geolocation/testing/GeolocationClientMock.cpp
|
| @@ -107,7 +107,7 @@ void GeolocationClientMock::asyncUpdatePermission()
|
| {
|
| ASSERT(m_permissionState != PermissionStateUnset);
|
| if (!m_permissionTimer.isActive())
|
| - m_permissionTimer.startOneShot(0, FROM_HERE);
|
| + m_permissionTimer.startOneShot(0, BLINK_FROM_HERE);
|
| }
|
|
|
| void GeolocationClientMock::permissionTimerFired(Timer<GeolocationClientMock>* timer)
|
| @@ -154,7 +154,7 @@ GeolocationPosition* GeolocationClientMock::lastPosition()
|
| void GeolocationClientMock::asyncUpdateController()
|
| {
|
| if (m_isActive && !m_controllerTimer.isActive())
|
| - m_controllerTimer.startOneShot(0, FROM_HERE);
|
| + m_controllerTimer.startOneShot(0, BLINK_FROM_HERE);
|
| }
|
|
|
| void GeolocationClientMock::controllerTimerFired(Timer<GeolocationClientMock>* timer)
|
|
|