| Index: Source/core/frame/DOMWindow.cpp | 
| diff --git a/Source/core/frame/DOMWindow.cpp b/Source/core/frame/DOMWindow.cpp | 
| index b5109df150392715898e04c97914a4eed0041921..82002388fa2dd979b9c1ac598bd1b44c03ff16ad 100644 | 
| --- a/Source/core/frame/DOMWindow.cpp | 
| +++ b/Source/core/frame/DOMWindow.cpp | 
| @@ -1486,7 +1486,7 @@ void DOMWindow::resizeTo(float width, float height) const | 
| page->chrome().setWindowRect(adjustWindowRect(page, update)); | 
| } | 
|  | 
| -int DOMWindow::requestAnimationFrame(PassRefPtr<RequestAnimationFrameCallback> callback) | 
| +int DOMWindow::requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback> callback) | 
| { | 
| callback->m_useLegacyTimeBase = false; | 
| if (Document* d = document()) | 
| @@ -1494,7 +1494,7 @@ int DOMWindow::requestAnimationFrame(PassRefPtr<RequestAnimationFrameCallback> c | 
| return 0; | 
| } | 
|  | 
| -int DOMWindow::webkitRequestAnimationFrame(PassRefPtr<RequestAnimationFrameCallback> callback) | 
| +int DOMWindow::webkitRequestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback> callback) | 
| { | 
| callback->m_useLegacyTimeBase = true; | 
| if (Document* d = document()) | 
|  |