| 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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
| 7 * rights reserved. | 7 * rights reserved. |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 // ExecutionContext. | 994 // ExecutionContext. |
| 995 void postTask(const WebTraceLocation&, | 995 void postTask(const WebTraceLocation&, |
| 996 std::unique_ptr<ExecutionContextTask>, | 996 std::unique_ptr<ExecutionContextTask>, |
| 997 const String& taskNameForInstrumentation = emptyString()) | 997 const String& taskNameForInstrumentation = emptyString()) |
| 998 override; // Executes the task on context's thread asynchronously. | 998 override; // Executes the task on context's thread asynchronously. |
| 999 void postInspectorTask(const WebTraceLocation&, | 999 void postInspectorTask(const WebTraceLocation&, |
| 1000 std::unique_ptr<ExecutionContextTask>); | 1000 std::unique_ptr<ExecutionContextTask>); |
| 1001 | 1001 |
| 1002 void tasksWereSuspended() final; | 1002 void tasksWereSuspended() final; |
| 1003 void tasksWereResumed() final; | 1003 void tasksWereResumed() final; |
| 1004 void suspendScheduledTasks() final; | |
| 1005 void resumeScheduledTasks() final; | |
| 1006 bool tasksNeedSuspension() final; | 1004 bool tasksNeedSuspension() final; |
| 1007 | 1005 |
| 1008 void finishedParsing(); | 1006 void finishedParsing(); |
| 1009 | 1007 |
| 1010 void setEncodingData(const DocumentEncodingData& newData); | 1008 void setEncodingData(const DocumentEncodingData& newData); |
| 1011 const WTF::TextEncoding& encoding() const { | 1009 const WTF::TextEncoding& encoding() const { |
| 1012 return m_encodingData.encoding(); | 1010 return m_encodingData.encoding(); |
| 1013 } | 1011 } |
| 1014 | 1012 |
| 1015 bool encodingWasDetectedHeuristically() const { | 1013 bool encodingWasDetectedHeuristically() const { |
| (...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1714 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1712 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1715 | 1713 |
| 1716 } // namespace blink | 1714 } // namespace blink |
| 1717 | 1715 |
| 1718 #ifndef NDEBUG | 1716 #ifndef NDEBUG |
| 1719 // Outside the WebCore namespace for ease of invocation from gdb. | 1717 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1720 CORE_EXPORT void showLiveDocumentInstances(); | 1718 CORE_EXPORT void showLiveDocumentInstances(); |
| 1721 #endif | 1719 #endif |
| 1722 | 1720 |
| 1723 #endif // Document_h | 1721 #endif // Document_h |
| OLD | NEW |