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

Side by Side Diff: Source/core/page/Page.h

Issue 955583002: InlinedVisitor: Migrate page to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/FrameTree.cpp ('k') | Source/core/page/Page.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) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 191
192 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); 192 void addMultisamplingChangedObserver(MultisamplingChangedObserver*);
193 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); 193 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*);
194 194
195 void didCommitLoad(LocalFrame*); 195 void didCommitLoad(LocalFrame*);
196 196
197 void acceptLanguagesChanged(); 197 void acceptLanguagesChanged();
198 198
199 static void networkStateChanged(bool online); 199 static void networkStateChanged(bool online);
200 200
201 void trace(Visitor*); 201 DECLARE_TRACE();
202 void willBeDestroyed(); 202 void willBeDestroyed();
203 203
204 private: 204 private:
205 void initGroup(); 205 void initGroup();
206 206
207 void setTimerAlignmentInterval(double); 207 void setTimerAlignmentInterval(double);
208 208
209 void setNeedsLayoutInAllFrames(); 209 void setNeedsLayoutInAllFrames();
210 210
211 // SettingsDelegate overrides. 211 // SettingsDelegate overrides.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver>> m_mu ltisamplingChangedObservers; 265 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver>> m_mu ltisamplingChangedObservers;
266 266
267 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. 267 // A pointer to all the interfaces provided to in-process Frames for this Pa ge.
268 // FIXME: Most of the members of Page should move onto FrameHost. 268 // FIXME: Most of the members of Page should move onto FrameHost.
269 OwnPtrWillBeMember<FrameHost> m_frameHost; 269 OwnPtrWillBeMember<FrameHost> m_frameHost;
270 }; 270 };
271 271
272 } // namespace blink 272 } // namespace blink
273 273
274 #endif // Page_h 274 #endif // Page_h
OLDNEW
« no previous file with comments | « Source/core/page/FrameTree.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698