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

Side by Side Diff: Source/core/page/Frame.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/page/DOMTimer.cpp ('k') | Source/core/page/Frame.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) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999-2001 Lars Knoll <knoll@kde.org> 3 * 1999-2001 Lars Knoll <knoll@kde.org>
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> 4 * 1999-2001 Antti Koivisto <koivisto@kde.org>
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> 5 * 2000-2001 Simon Hausmann <hausmann@kde.org>
6 * 2000-2001 Dirk Mueller <mueller@kde.org> 6 * 2000-2001 Dirk Mueller <mueller@kde.org>
7 * 2000 Stefan Schimanski <1Stein@gmx.de> 7 * 2000 Stefan Schimanski <1Stein@gmx.de>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 FrameSelection* selection() const; 103 FrameSelection* selection() const;
104 FrameTree* tree() const; 104 FrameTree* tree() const;
105 AnimationController* animation() const; 105 AnimationController* animation() const;
106 ScriptController* script(); 106 ScriptController* script();
107 107
108 RenderView* contentRenderer() const; // Root of the render tree for the document contained in this frame. 108 RenderView* contentRenderer() const; // Root of the render tree for the document contained in this frame.
109 RenderPart* ownerRenderer() const; // Renderer for the element that cont ains this frame. 109 RenderPart* ownerRenderer() const; // Renderer for the element that cont ains this frame.
110 110
111 void dispatchVisibilityStateChangeEvent(); 111 void dispatchVisibilityStateChangeEvent();
112 112
113 void reportMemoryUsage(MemoryObjectInfo*) const;
114
115 // ======== All public functions below this point are candidates to move out of Frame into another class. ======== 113 // ======== All public functions below this point are candidates to move out of Frame into another class. ========
116 114
117 bool inScope(TreeScope*) const; 115 bool inScope(TreeScope*) const;
118 116
119 String layerTreeAsText(LayerTreeFlags = 0) const; 117 String layerTreeAsText(LayerTreeFlags = 0) const;
120 String trackedRepaintRectsAsText() const; 118 String trackedRepaintRectsAsText() const;
121 119
122 static Frame* frameForWidget(const Widget*); 120 static Frame* frameForWidget(const Widget*);
123 121
124 Settings* settings() const; // can be NULL 122 Settings* settings() const; // can be NULL
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 } 273 }
276 274
277 inline EventHandler* Frame::eventHandler() const 275 inline EventHandler* Frame::eventHandler() const
278 { 276 {
279 return m_eventHandler.get(); 277 return m_eventHandler.get();
280 } 278 }
281 279
282 } // namespace WebCore 280 } // namespace WebCore
283 281
284 #endif // Frame_h 282 #endif // Frame_h
OLDNEW
« no previous file with comments | « Source/core/page/DOMTimer.cpp ('k') | Source/core/page/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698