| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>); | 488 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>); |
| 489 void cancelAnimationFrame(int id); | 489 void cancelAnimationFrame(int id); |
| 490 void serviceScriptedAnimations(double monotonicAnimationStartTime); | 490 void serviceScriptedAnimations(double monotonicAnimationStartTime); |
| 491 | 491 |
| 492 virtual EventTarget* errorEventTarget() override final; | 492 virtual EventTarget* errorEventTarget() override final; |
| 493 virtual void logExceptionToConsole(const String& errorMessage, int scriptId,
const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCal
lStack>) override final; | 493 virtual void logExceptionToConsole(const String& errorMessage, int scriptId,
const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCal
lStack>) override final; |
| 494 | 494 |
| 495 IntSize initialViewportSize() const; | 495 IntSize initialViewportSize() const; |
| 496 | 496 |
| 497 ScriptValue registerElement(ScriptState*, const AtomicString& name, Exceptio
nState&); | 497 ScriptValue registerElement(ScriptState*, const AtomicString& name, Exceptio
nState&); |
| 498 ScriptValue registerElement(ScriptState*, const AtomicString& name, const Di
ctionary& options, ExceptionState&, CustomElement::NameSet validNames = CustomEl
ement::StandardNames); | 498 ScriptValue registerElement(ScriptState*, const AtomicString& name, const Di
ctionary& options, ExceptionState&); |
| 499 CustomElementRegistrationContext* registrationContext() { return m_registrat
ionContext.get(); } | 499 CustomElementRegistrationContext* registrationContext() { return m_registrat
ionContext.get(); } |
| 500 CustomElementMicrotaskRunQueue* customElementMicrotaskRunQueue(); | 500 CustomElementMicrotaskRunQueue* customElementMicrotaskRunQueue(); |
| 501 | 501 |
| 502 void setImportsController(HTMLImportsController*); | 502 void setImportsController(HTMLImportsController*); |
| 503 HTMLImportsController* importsController() const { return m_importsControlle
r; } | 503 HTMLImportsController* importsController() const { return m_importsControlle
r; } |
| 504 HTMLImportsController& ensureImportsController(); | 504 HTMLImportsController& ensureImportsController(); |
| 505 HTMLImportLoader* importLoader() const; | 505 HTMLImportLoader* importLoader() const; |
| 506 HTMLImport* import() const; | 506 HTMLImport* import() const; |
| 507 | 507 |
| 508 bool haveImportsLoaded() const; | 508 bool haveImportsLoaded() const; |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 Node* eventTargetNodeForDocument(Document*); | 785 Node* eventTargetNodeForDocument(Document*); |
| 786 | 786 |
| 787 } // namespace blink | 787 } // namespace blink |
| 788 | 788 |
| 789 #ifndef NDEBUG | 789 #ifndef NDEBUG |
| 790 // Outside the WebCore namespace for ease of invocation from gdb. | 790 // Outside the WebCore namespace for ease of invocation from gdb. |
| 791 void showLiveDocumentInstances(); | 791 void showLiveDocumentInstances(); |
| 792 #endif | 792 #endif |
| 793 | 793 |
| 794 #endif // SKY_ENGINE_CORE_DOM_DOCUMENT_H_ | 794 #endif // SKY_ENGINE_CORE_DOM_DOCUMENT_H_ |
| OLD | NEW |