| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index ed566c62963a0a56b2e0850ed56cf057122447c4..2833ac9328736a6e67087116d58d9038f2c86c23 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -5445,6 +5445,12 @@ Locale& Document::getCachedLocale(const AtomicString& locale)
|
| return *(result.storedValue->value);
|
| }
|
|
|
| +AnimationClock& Document::animationClock()
|
| +{
|
| + ASSERT(page());
|
| + return page()->animator().clock();
|
| +}
|
| +
|
| Document& Document::ensureTemplateDocument()
|
| {
|
| if (isTemplateDocument())
|
|
|