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

Unified Diff: Source/core/page/Page.h

Issue 20231002: Replace RenderArena with PartitionAlloc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/page/FrameView.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/Page.h
diff --git a/Source/core/page/Page.h b/Source/core/page/Page.h
index 870ff64674300eef28c0ecf16df788cc6e2685ba..0edf04d2ec839f8cd5f3735bc1acd2fa8180dd78 100644
--- a/Source/core/page/Page.h
+++ b/Source/core/page/Page.h
@@ -80,16 +80,6 @@ typedef uint64_t LinkHash;
float deviceScaleFactor(Frame*);
-struct ArenaSize {
- ArenaSize(size_t treeSize, size_t allocated)
- : treeSize(treeSize)
- , allocated(allocated)
- {
- }
- size_t treeSize;
- size_t allocated;
-};
-
class Page : public Supplementable<Page>, public LifecycleContext {
WTF_MAKE_NONCOPYABLE(Page);
friend class Settings;
@@ -114,8 +104,6 @@ public:
explicit Page(PageClients&);
~Page();
- ArenaSize renderTreeSize() const;
-
void setNeedsRecalcStyleInAllFrames();
RenderTheme* theme() const { return m_theme.get(); }
« no previous file with comments | « Source/core/page/FrameView.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698