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

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

Issue 13973026: remove memoryinstrumentation Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove the rest part of MemoryInstrumentation Created 7 years, 8 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
« no previous file with comments | « Source/core/dom/LiveNodeList.cpp ('k') | Source/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, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights 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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 void registerMutationObserver(MutationObserver*, MutationObserverOptions, co nst HashSet<AtomicString>& attributeFilter); 653 void registerMutationObserver(MutationObserver*, MutationObserverOptions, co nst HashSet<AtomicString>& attributeFilter);
654 void unregisterMutationObserver(MutationObserverRegistration*); 654 void unregisterMutationObserver(MutationObserverRegistration*);
655 void registerTransientMutationObserver(MutationObserverRegistration*); 655 void registerTransientMutationObserver(MutationObserverRegistration*);
656 void unregisterTransientMutationObserver(MutationObserverRegistration*); 656 void unregisterTransientMutationObserver(MutationObserverRegistration*);
657 void notifyMutationObserversNodeWillDetach(); 657 void notifyMutationObserversNodeWillDetach();
658 658
659 virtual void registerScopedHTMLStyleChild(); 659 virtual void registerScopedHTMLStyleChild();
660 virtual void unregisterScopedHTMLStyleChild(); 660 virtual void unregisterScopedHTMLStyleChild();
661 size_t numberOfScopedHTMLStyleChildren() const; 661 size_t numberOfScopedHTMLStyleChildren() const;
662 662
663 virtual void reportMemoryUsage(MemoryObjectInfo*) const;
664
665 void textRects(Vector<IntRect>&) const; 663 void textRects(Vector<IntRect>&) const;
666 664
667 unsigned connectedSubframeCount() const; 665 unsigned connectedSubframeCount() const;
668 void incrementConnectedSubframeCount(unsigned amount = 1); 666 void incrementConnectedSubframeCount(unsigned amount = 1);
669 void decrementConnectedSubframeCount(unsigned amount = 1); 667 void decrementConnectedSubframeCount(unsigned amount = 1);
670 void updateAncestorConnectedSubframeCountForRemoval() const; 668 void updateAncestorConnectedSubframeCountForRemoval() const;
671 void updateAncestorConnectedSubframeCountForInsertion() const; 669 void updateAncestorConnectedSubframeCountForInsertion() const;
672 670
673 private: 671 private:
674 enum NodeFlags { 672 enum NodeFlags {
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 870
873 } //namespace 871 } //namespace
874 872
875 #ifndef NDEBUG 873 #ifndef NDEBUG
876 // Outside the WebCore namespace for ease of invocation from gdb. 874 // Outside the WebCore namespace for ease of invocation from gdb.
877 void showTree(const WebCore::Node*); 875 void showTree(const WebCore::Node*);
878 void showNodePath(const WebCore::Node*); 876 void showNodePath(const WebCore::Node*);
879 #endif 877 #endif
880 878
881 #endif 879 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/LiveNodeList.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698