| 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 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 | 1052 |
| 1053 bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdate
SVGFilterElements.size(); } | 1053 bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdate
SVGFilterElements.size(); } |
| 1054 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; } | 1054 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; } |
| 1055 | 1055 |
| 1056 AtomicString convertLocalName(const AtomicString&); | 1056 AtomicString convertLocalName(const AtomicString&); |
| 1057 | 1057 |
| 1058 void platformColorsChanged(); | 1058 void platformColorsChanged(); |
| 1059 | 1059 |
| 1060 virtual DOMTimerCoordinator* timers() override final; | 1060 virtual DOMTimerCoordinator* timers() override final; |
| 1061 | 1061 |
| 1062 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext,
v8::Isolate*) override; | 1062 virtual v8::Local<v8::Object> wrap(v8::Local<v8::Object> creationContext, v8
::Isolate*) override; |
| 1063 virtual v8::Handle<v8::Object> associateWithWrapper(v8::Isolate*, const Wrap
perTypeInfo*, v8::Handle<v8::Object> wrapper) override; | 1063 virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const Wrapp
erTypeInfo*, v8::Local<v8::Object> wrapper) override; |
| 1064 | 1064 |
| 1065 OriginsUsingFeatures::Value& originsUsingFeaturesValue() { return m_originsU
singFeaturesValue; } | 1065 OriginsUsingFeatures::Value& originsUsingFeaturesValue() { return m_originsU
singFeaturesValue; } |
| 1066 | 1066 |
| 1067 NthIndexCache* nthIndexCache() const { return m_nthIndexCache; } | 1067 NthIndexCache* nthIndexCache() const { return m_nthIndexCache; } |
| 1068 | 1068 |
| 1069 bool isPrivilegedContext(String& errorMessage, const PrivilegeContextCheck =
StandardPrivilegeCheck) override; | 1069 bool isPrivilegedContext(String& errorMessage, const PrivilegeContextCheck =
StandardPrivilegeCheck) override; |
| 1070 | 1070 |
| 1071 void setClientHintsPreferences(const ClientHintsPreferences& preferences) {
m_clientHintsPreferences.set(preferences); } | 1071 void setClientHintsPreferences(const ClientHintsPreferences& preferences) {
m_clientHintsPreferences.set(preferences); } |
| 1072 const ClientHintsPreferences& clientHintsPreferences() const { return m_clie
ntHintsPreferences; } | 1072 const ClientHintsPreferences& clientHintsPreferences() const { return m_clie
ntHintsPreferences; } |
| 1073 | 1073 |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1461 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1461 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1462 | 1462 |
| 1463 } // namespace blink | 1463 } // namespace blink |
| 1464 | 1464 |
| 1465 #ifndef NDEBUG | 1465 #ifndef NDEBUG |
| 1466 // Outside the WebCore namespace for ease of invocation from gdb. | 1466 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1467 CORE_EXPORT void showLiveDocumentInstances(); | 1467 CORE_EXPORT void showLiveDocumentInstances(); |
| 1468 #endif | 1468 #endif |
| 1469 | 1469 |
| 1470 #endif // Document_h | 1470 #endif // Document_h |
| OLD | NEW |