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

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

Issue 225843002: Oilpan: move ClientRect and its list to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased + code style Created 6 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
« no previous file with comments | « Source/core/dom/Range.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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 FocusController& focusController() const { return *m_focusController; } 150 FocusController& focusController() const { return *m_focusController; }
151 ContextMenuController& contextMenuController() const { return *m_contextMenu Controller; } 151 ContextMenuController& contextMenuController() const { return *m_contextMenu Controller; }
152 InspectorController& inspectorController() const { return *m_inspectorContro ller; } 152 InspectorController& inspectorController() const { return *m_inspectorContro ller; }
153 PointerLockController& pointerLockController() const { return *m_pointerLock Controller; } 153 PointerLockController& pointerLockController() const { return *m_pointerLock Controller; }
154 ValidationMessageClient* validationMessageClient() const { return m_validati onMessageClient; } 154 ValidationMessageClient* validationMessageClient() const { return m_validati onMessageClient; }
155 void setValidationMessageClient(ValidationMessageClient* client) { m_validat ionMessageClient = client; } 155 void setValidationMessageClient(ValidationMessageClient* client) { m_validat ionMessageClient = client; }
156 156
157 ScrollingCoordinator* scrollingCoordinator(); 157 ScrollingCoordinator* scrollingCoordinator();
158 158
159 String mainThreadScrollingReasonsAsText(); 159 String mainThreadScrollingReasonsAsText();
160 PassRefPtr<ClientRectList> nonFastScrollableRects(const LocalFrame*); 160 PassRefPtrWillBeRawPtr<ClientRectList> nonFastScrollableRects(const LocalFra me*);
161 161
162 Settings& settings() const { return *m_settings; } 162 Settings& settings() const { return *m_settings; }
163 BackForwardClient& backForward() const { return *m_backForwardClient; } 163 BackForwardClient& backForward() const { return *m_backForwardClient; }
164 164
165 UseCounter& useCounter() { return m_useCounter; } 165 UseCounter& useCounter() { return m_useCounter; }
166 166
167 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements = b; } 167 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements = b; }
168 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme nts; } 168 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme nts; }
169 169
170 void unmarkAllTextMatches(); 170 void unmarkAllTextMatches();
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; 288 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers;
289 289
290 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. 290 // A pointer to all the interfaces provided to in-process Frames for this Pa ge.
291 // FIXME: Most of the members of Page should move onto FrameHost. 291 // FIXME: Most of the members of Page should move onto FrameHost.
292 OwnPtr<FrameHost> m_frameHost; 292 OwnPtr<FrameHost> m_frameHost;
293 }; 293 };
294 294
295 } // namespace WebCore 295 } // namespace WebCore
296 296
297 #endif // Page_h 297 #endif // Page_h
OLDNEW
« no previous file with comments | « Source/core/dom/Range.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698