| Index: Source/platform/SharedTimer.cpp
|
| diff --git a/Source/platform/SharedTimer.cpp b/Source/platform/SharedTimer.cpp
|
| index e30d5f9025bf1c2fe70e3e4aec207b7930cb77db..8fa3285ba38c2af146e22c358bbee1a79f0f75e8 100644
|
| --- a/Source/platform/SharedTimer.cpp
|
| +++ b/Source/platform/SharedTimer.cpp
|
| @@ -32,17 +32,17 @@ namespace WebCore {
|
|
|
| void setSharedTimerFiredFunction(void (*f)())
|
| {
|
| - WebKit::Platform::current()->setSharedTimerFiredFunction(f);
|
| + blink::Platform::current()->setSharedTimerFiredFunction(f);
|
| }
|
|
|
| void setSharedTimerFireInterval(double fireTime)
|
| {
|
| - WebKit::Platform::current()->setSharedTimerFireInterval(fireTime);
|
| + blink::Platform::current()->setSharedTimerFireInterval(fireTime);
|
| }
|
|
|
| void stopSharedTimer()
|
| {
|
| - WebKit::Platform::current()->stopSharedTimer();
|
| + blink::Platform::current()->stopSharedTimer();
|
| }
|
|
|
| } // namespace WebCore
|
|
|