Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: Source/core/dom/Document.h

Issue 14776002: Create wrappers for unresolved Custom Elements at the correct type (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 1063
1064 Prerenderer* prerenderer() { return m_prerenderer.get(); } 1064 Prerenderer* prerenderer() { return m_prerenderer.get(); }
1065 1065
1066 TextAutosizer* textAutosizer() { return m_textAutosizer.get(); } 1066 TextAutosizer* textAutosizer() { return m_textAutosizer.get(); }
1067 1067
1068 PassRefPtr<Element> createElement(const AtomicString& localName, const Atomi cString& typeExtension, ExceptionCode&); 1068 PassRefPtr<Element> createElement(const AtomicString& localName, const Atomi cString& typeExtension, ExceptionCode&);
1069 PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const String& qualifiedName, const AtomicString& typeExtension, ExceptionCode&); 1069 PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const String& qualifiedName, const AtomicString& typeExtension, ExceptionCode&);
1070 PassRefPtr<CustomElementConstructor> registerElement(WebCore::ScriptState*, const AtomicString& name, ExceptionCode&); 1070 PassRefPtr<CustomElementConstructor> registerElement(WebCore::ScriptState*, const AtomicString& name, ExceptionCode&);
1071 PassRefPtr<CustomElementConstructor> registerElement(WebCore::ScriptState*, const AtomicString& name, const Dictionary& options, ExceptionCode&); 1071 PassRefPtr<CustomElementConstructor> registerElement(WebCore::ScriptState*, const AtomicString& name, const Dictionary& options, ExceptionCode&);
1072 CustomElementRegistry* registry() const { return m_registry.get(); } 1072 CustomElementRegistry* registry() const { return m_registry.get(); }
1073 CustomElementRegistry* ensureCustomElementRegistry();
1073 1074
1074 void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObje ct*); 1075 void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObje ct*);
1075 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject*); 1076 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject*);
1076 1077
1077 bool hasActiveParser(); 1078 bool hasActiveParser();
1078 unsigned activeParserCount() { return m_activeParserCount; } 1079 unsigned activeParserCount() { return m_activeParserCount; }
1079 void incrementActiveParserCount() { ++m_activeParserCount; } 1080 void incrementActiveParserCount() { ++m_activeParserCount; }
1080 void decrementActiveParserCount(); 1081 void decrementActiveParserCount();
1081 1082
1082 void setContextFeatures(PassRefPtr<ContextFeatures>); 1083 void setContextFeatures(PassRefPtr<ContextFeatures>);
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
1515 trackForDebugging(); 1516 trackForDebugging();
1516 #endif 1517 #endif
1517 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); 1518 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter);
1518 } 1519 }
1519 1520
1520 Node* eventTargetNodeForDocument(Document*); 1521 Node* eventTargetNodeForDocument(Document*);
1521 1522
1522 } // namespace WebCore 1523 } // namespace WebCore
1523 1524
1524 #endif // Document_h 1525 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698