| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 const DocumentTiming& timing() const { return m_documentTiming; } | 923 const DocumentTiming& timing() const { return m_documentTiming; } |
| 924 | 924 |
| 925 int requestAnimationFrame(FrameRequestCallback*); | 925 int requestAnimationFrame(FrameRequestCallback*); |
| 926 void cancelAnimationFrame(int id); | 926 void cancelAnimationFrame(int id); |
| 927 void serviceScriptedAnimations(double monotonicAnimationStartTime); | 927 void serviceScriptedAnimations(double monotonicAnimationStartTime); |
| 928 | 928 |
| 929 int requestIdleCallback(IdleRequestCallback*, const IdleRequestOptions&); | 929 int requestIdleCallback(IdleRequestCallback*, const IdleRequestOptions&); |
| 930 void cancelIdleCallback(int id); | 930 void cancelIdleCallback(int id); |
| 931 | 931 |
| 932 EventTarget* errorEventTarget() final; | 932 EventTarget* errorEventTarget() final; |
| 933 void logExceptionToConsole(const String& errorMessage, int scriptId, const S
tring& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<Scrip
tCallStack>) final; | 933 void logExceptionToConsole(const String& errorMessage, int scriptId, const S
tring& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>)
final; |
| 934 | 934 |
| 935 void initDNSPrefetch(); | 935 void initDNSPrefetch(); |
| 936 | 936 |
| 937 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } | 937 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } |
| 938 | 938 |
| 939 TextAutosizer* textAutosizer(); | 939 TextAutosizer* textAutosizer(); |
| 940 | 940 |
| 941 PassRefPtrWillBeRawPtr<Element> createElement(const AtomicString& localName,
const AtomicString& typeExtension, ExceptionState&); | 941 PassRefPtrWillBeRawPtr<Element> createElement(const AtomicString& localName,
const AtomicString& typeExtension, ExceptionState&); |
| 942 PassRefPtrWillBeRawPtr<Element> createElementNS(const AtomicString& namespac
eURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, Exce
ptionState&); | 942 PassRefPtrWillBeRawPtr<Element> createElementNS(const AtomicString& namespac
eURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, Exce
ptionState&); |
| 943 ScriptValue registerElement(ScriptState*, const AtomicString& name, const El
ementRegistrationOptions&, ExceptionState&, CustomElement::NameSet validNames =
CustomElement::StandardNames); | 943 ScriptValue registerElement(ScriptState*, const AtomicString& name, const El
ementRegistrationOptions&, ExceptionState&, CustomElement::NameSet validNames =
CustomElement::StandardNames); |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1452 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1452 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1453 | 1453 |
| 1454 } // namespace blink | 1454 } // namespace blink |
| 1455 | 1455 |
| 1456 #ifndef NDEBUG | 1456 #ifndef NDEBUG |
| 1457 // Outside the WebCore namespace for ease of invocation from gdb. | 1457 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1458 CORE_EXPORT void showLiveDocumentInstances(); | 1458 CORE_EXPORT void showLiveDocumentInstances(); |
| 1459 #endif | 1459 #endif |
| 1460 | 1460 |
| 1461 #endif // Document_h | 1461 #endif // Document_h |
| OLD | NEW |