Chromium Code Reviews| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 302 DocumentFragment* createDocumentFragment(); | 302 DocumentFragment* createDocumentFragment(); |
| 303 Text* createTextNode(const String& data); | 303 Text* createTextNode(const String& data); |
| 304 Comment* createComment(const String& data); | 304 Comment* createComment(const String& data); |
| 305 CDATASection* createCDATASection(const String& data, ExceptionState&); | 305 CDATASection* createCDATASection(const String& data, ExceptionState&); |
| 306 ProcessingInstruction* createProcessingInstruction(const String& target, con st String& data, ExceptionState&); | 306 ProcessingInstruction* createProcessingInstruction(const String& target, con st String& data, ExceptionState&); |
| 307 Attr* createAttribute(const AtomicString& name, ExceptionState&); | 307 Attr* createAttribute(const AtomicString& name, ExceptionState&); |
| 308 Attr* createAttributeNS(const AtomicString& namespaceURI, const AtomicString & qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false); | 308 Attr* createAttributeNS(const AtomicString& namespaceURI, const AtomicString & qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false); |
| 309 Node* importNode(Node* importedNode, bool deep, ExceptionState&); | 309 Node* importNode(Node* importedNode, bool deep, ExceptionState&); |
| 310 Element* createElementNS(const AtomicString& namespaceURI, const AtomicStrin g& qualifiedName, ExceptionState&); | 310 Element* createElementNS(const AtomicString& namespaceURI, const AtomicStrin g& qualifiedName, ExceptionState&); |
| 311 Element* createElement(const QualifiedName&, CreateElementFlags); | 311 Element* createElement(const QualifiedName&, CreateElementFlags); |
| 312 Element* createElement(const QualifiedName&, CreateElementFlags, ExceptionSt ate&); | |
|
dominicc (has gone to gerrit)
2016/06/10 06:13:28
OK now I'm really confused. Who uses *this*?
I th
kojii
2016/06/10 19:01:45
Done. took some refactoring, but not all yet.
| |
| 312 | 313 |
| 313 Element* elementFromPoint(int x, int y) const; | 314 Element* elementFromPoint(int x, int y) const; |
| 314 HeapVector<Member<Element>> elementsFromPoint(int x, int y) const; | 315 HeapVector<Member<Element>> elementsFromPoint(int x, int y) const; |
| 315 Range* caretRangeFromPoint(int x, int y); | 316 Range* caretRangeFromPoint(int x, int y); |
| 316 Element* scrollingElement(); | 317 Element* scrollingElement(); |
| 317 | 318 |
| 318 String readyState() const; | 319 String readyState() const; |
| 319 | 320 |
| 320 AtomicString characterSet() const { return Document::encodingName(); } | 321 AtomicString characterSet() const { return Document::encodingName(); } |
| 321 | 322 |
| (...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1452 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1453 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1453 | 1454 |
| 1454 } // namespace blink | 1455 } // namespace blink |
| 1455 | 1456 |
| 1456 #ifndef NDEBUG | 1457 #ifndef NDEBUG |
| 1457 // Outside the WebCore namespace for ease of invocation from gdb. | 1458 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1458 CORE_EXPORT void showLiveDocumentInstances(); | 1459 CORE_EXPORT void showLiveDocumentInstances(); |
| 1459 #endif | 1460 #endif |
| 1460 | 1461 |
| 1461 #endif // Document_h | 1462 #endif // Document_h |
| OLD | NEW |