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 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1015 | 1015 |
1016 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte
xt) override; | 1016 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte
xt) override; |
1017 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN; | 1017 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN; |
1018 | 1018 |
1019 OriginsUsingFeatures::Value& originsUsingFeaturesValue() { return m_originsU
singFeaturesValue; } | 1019 OriginsUsingFeatures::Value& originsUsingFeaturesValue() { return m_originsU
singFeaturesValue; } |
1020 | 1020 |
1021 NthIndexCache* nthIndexCache() const { return m_nthIndexCache; } | 1021 NthIndexCache* nthIndexCache() const { return m_nthIndexCache; } |
1022 | 1022 |
1023 bool isPrivilegedContext(String& errorMessage, const PrivilegeContextCheck =
StandardPrivilegeCheck) const override; | 1023 bool isPrivilegedContext(String& errorMessage, const PrivilegeContextCheck =
StandardPrivilegeCheck) const override; |
1024 | 1024 |
1025 void setClientHintsPreferences(const ClientHintsPreferences& preferences) {
m_clientHintsPreferences.set(preferences); } | 1025 ClientHintsPreferences& clientHintsPreferences() { return m_clientHintsPrefe
rences; } |
1026 const ClientHintsPreferences& clientHintsPreferences() const { return m_clie
ntHintsPreferences; } | |
1027 | 1026 |
1028 CanvasFontCache* canvasFontCache(); | 1027 CanvasFontCache* canvasFontCache(); |
1029 | 1028 |
1030 void incrementNodeCount() { m_nodeCount++; } | 1029 void incrementNodeCount() { m_nodeCount++; } |
1031 void decrementNodeCount() | 1030 void decrementNodeCount() |
1032 { | 1031 { |
1033 ASSERT(m_nodeCount > 0); | 1032 ASSERT(m_nodeCount > 0); |
1034 m_nodeCount--; | 1033 m_nodeCount--; |
1035 } | 1034 } |
1036 int nodeCount() const { return m_nodeCount; } | 1035 int nodeCount() const { return m_nodeCount; } |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1421 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1420 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
1422 | 1421 |
1423 } // namespace blink | 1422 } // namespace blink |
1424 | 1423 |
1425 #ifndef NDEBUG | 1424 #ifndef NDEBUG |
1426 // Outside the WebCore namespace for ease of invocation from gdb. | 1425 // Outside the WebCore namespace for ease of invocation from gdb. |
1427 CORE_EXPORT void showLiveDocumentInstances(); | 1426 CORE_EXPORT void showLiveDocumentInstances(); |
1428 #endif | 1427 #endif |
1429 | 1428 |
1430 #endif // Document_h | 1429 #endif // Document_h |
OLD | NEW |