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

Side by Side Diff: Source/core/dom/Document.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/ContextDestructionObserver.cpp ('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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after
1093 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject*); 1093 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject*);
1094 1094
1095 bool hasActiveParser(); 1095 bool hasActiveParser();
1096 unsigned activeParserCount() { return m_activeParserCount; } 1096 unsigned activeParserCount() { return m_activeParserCount; }
1097 void incrementActiveParserCount() { ++m_activeParserCount; } 1097 void incrementActiveParserCount() { ++m_activeParserCount; }
1098 void decrementActiveParserCount(); 1098 void decrementActiveParserCount();
1099 1099
1100 void setContextFeatures(PassRefPtr<ContextFeatures>); 1100 void setContextFeatures(PassRefPtr<ContextFeatures>);
1101 ContextFeatures* contextFeatures() { return m_contextFeatures.get(); } 1101 ContextFeatures* contextFeatures() { return m_contextFeatures.get(); }
1102 1102
1103 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE;
1104
1105 DocumentSharedObjectPool* sharedObjectPool() { return m_sharedObjectPool.get (); } 1103 DocumentSharedObjectPool* sharedObjectPool() { return m_sharedObjectPool.get (); }
1106 1104
1107 void didRemoveAllPendingStylesheet(); 1105 void didRemoveAllPendingStylesheet();
1108 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend ingStylesheet = true; } 1106 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend ingStylesheet = true; }
1109 void clearStyleResolver(); 1107 void clearStyleResolver();
1110 void notifySeamlessChildDocumentsOfStylesheetUpdate() const; 1108 void notifySeamlessChildDocumentsOfStylesheetUpdate() const;
1111 1109
1112 bool inStyleRecalc() { return m_inStyleRecalc; } 1110 bool inStyleRecalc() { return m_inStyleRecalc; }
1113 1111
1114 // Return a Locale for the default locale if the argument is null or empty. 1112 // Return a Locale for the default locale if the argument is null or empty.
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
1548 trackForDebugging(); 1546 trackForDebugging();
1549 #endif 1547 #endif
1550 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); 1548 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter);
1551 } 1549 }
1552 1550
1553 Node* eventTargetNodeForDocument(Document*); 1551 Node* eventTargetNodeForDocument(Document*);
1554 1552
1555 } // namespace WebCore 1553 } // namespace WebCore
1556 1554
1557 #endif // Document_h 1555 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/dom/ContextDestructionObserver.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698