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

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

Issue 158593003: Remove Unused measure DocumentCreateAttributeNS (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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
« no previous file with comments | « LayoutTests/fast/dom/serialize-nodes.xhtml ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 310
311 Location* location() const; 311 Location* location() const;
312 312
313 PassRefPtr<Element> createElement(const AtomicString& name, ExceptionState&) ; 313 PassRefPtr<Element> createElement(const AtomicString& name, ExceptionState&) ;
314 PassRefPtr<DocumentFragment> createDocumentFragment(); 314 PassRefPtr<DocumentFragment> createDocumentFragment();
315 PassRefPtr<Text> createTextNode(const String& data); 315 PassRefPtr<Text> createTextNode(const String& data);
316 PassRefPtr<Comment> createComment(const String& data); 316 PassRefPtr<Comment> createComment(const String& data);
317 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionSta te&); 317 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionSta te&);
318 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&); 318 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&);
319 PassRefPtr<Attr> createAttribute(const AtomicString& name, ExceptionState&); 319 PassRefPtr<Attr> createAttribute(const AtomicString& name, ExceptionState&);
320 PassRefPtr<Attr> createAttributeNS(const AtomicString& namespaceURI, const A tomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false);
321 PassRefPtr<Node> importNode(Node* importedNode, ExceptionState& ec) { return importNode(importedNode, true, ec); } 320 PassRefPtr<Node> importNode(Node* importedNode, ExceptionState& ec) { return importNode(importedNode, true, ec); }
322 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&); 321 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&);
323 PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&); 322 PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&);
324 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser ); 323 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser );
325 324
326 PassRefPtr<DOMNamedFlowCollection> webkitGetNamedFlows(); 325 PassRefPtr<DOMNamedFlowCollection> webkitGetNamedFlows();
327 326
328 NamedFlowCollection* namedFlows(); 327 NamedFlowCollection* namedFlows();
329 328
330 bool regionBasedColumnsEnabled() const; 329 bool regionBasedColumnsEnabled() const;
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1393 inline bool Node::isDocumentNode() const 1392 inline bool Node::isDocumentNode() const
1394 { 1393 {
1395 return this == document(); 1394 return this == document();
1396 } 1395 }
1397 1396
1398 Node* eventTargetNodeForDocument(Document*); 1397 Node* eventTargetNodeForDocument(Document*);
1399 1398
1400 } // namespace WebCore 1399 } // namespace WebCore
1401 1400
1402 #endif // Document_h 1401 #endif // Document_h
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/serialize-nodes.xhtml ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698