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

Side by Side Diff: sky/engine/core/dom/Node.h

Issue 941913002: Remove two more uses of NodeList (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 | « no previous file | sky/engine/core/dom/Node.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 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 virtual EventTargetData* eventTargetData() override; 474 virtual EventTargetData* eventTargetData() override;
475 virtual EventTargetData& ensureEventTargetData() override; 475 virtual EventTargetData& ensureEventTargetData() override;
476 476
477 void getRegisteredMutationObserversOfType(HashMap<RawPtr<MutationObserver>, MutationRecordDeliveryOptions>&, MutationObserver::MutationType, const Qualified Name* attributeName); 477 void getRegisteredMutationObserversOfType(HashMap<RawPtr<MutationObserver>, MutationRecordDeliveryOptions>&, MutationObserver::MutationType, const Qualified Name* attributeName);
478 void registerMutationObserver(MutationObserver&, MutationObserverOptions, co nst HashSet<AtomicString>& attributeFilter); 478 void registerMutationObserver(MutationObserver&, MutationObserverOptions, co nst HashSet<AtomicString>& attributeFilter);
479 void unregisterMutationObserver(MutationObserverRegistration*); 479 void unregisterMutationObserver(MutationObserverRegistration*);
480 void registerTransientMutationObserver(MutationObserverRegistration*); 480 void registerTransientMutationObserver(MutationObserverRegistration*);
481 void unregisterTransientMutationObserver(MutationObserverRegistration*); 481 void unregisterTransientMutationObserver(MutationObserverRegistration*);
482 void notifyMutationObserversNodeWillDetach(); 482 void notifyMutationObserversNodeWillDetach();
483 483
484 PassRefPtr<StaticNodeList> getDestinationInsertionPoints(); 484 Vector<RefPtr<Node>> getDestinationInsertionPoints();
485 485
486 void setAlreadySpellChecked(bool flag) { setFlag(flag, AlreadySpellCheckedFl ag); } 486 void setAlreadySpellChecked(bool flag) { setFlag(flag, AlreadySpellCheckedFl ag); }
487 bool isAlreadySpellChecked() { return getFlag(AlreadySpellCheckedFlag); } 487 bool isAlreadySpellChecked() { return getFlag(AlreadySpellCheckedFlag); }
488 488
489 unsigned lengthOfContents() const; 489 unsigned lengthOfContents() const;
490 490
491 private: 491 private:
492 enum NodeFlags { 492 enum NodeFlags {
493 HasRareDataFlag = 1, 493 HasRareDataFlag = 1,
494 494
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 } // namespace blink 685 } // namespace blink
686 686
687 #ifndef NDEBUG 687 #ifndef NDEBUG
688 // Outside the WebCore namespace for ease of invocation from gdb. 688 // Outside the WebCore namespace for ease of invocation from gdb.
689 void showNode(const blink::Node*); 689 void showNode(const blink::Node*);
690 void showTree(const blink::Node*); 690 void showTree(const blink::Node*);
691 void showNodePath(const blink::Node*); 691 void showNodePath(const blink::Node*);
692 #endif 692 #endif
693 693
694 #endif // SKY_ENGINE_CORE_DOM_NODE_H_ 694 #endif // SKY_ENGINE_CORE_DOM_NODE_H_
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698