| OLD | NEW |
| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 void setOpenedByDOM(); | 113 void setOpenedByDOM(); |
| 114 | 114 |
| 115 PageAnimator& animator() { return m_animator; } | 115 PageAnimator& animator() { return m_animator; } |
| 116 Chrome& chrome() const { return *m_chrome; } | 116 Chrome& chrome() const { return *m_chrome; } |
| 117 AutoscrollController& autoscrollController() const { return *m_autoscrollCon
troller; } | 117 AutoscrollController& autoscrollController() const { return *m_autoscrollCon
troller; } |
| 118 DragCaretController& dragCaretController() const { return *m_dragCaretContro
ller; } | 118 DragCaretController& dragCaretController() const { return *m_dragCaretContro
ller; } |
| 119 FocusController& focusController() const { return *m_focusController; } | 119 FocusController& focusController() const { return *m_focusController; } |
| 120 | 120 |
| 121 ScrollingCoordinator* scrollingCoordinator(); | 121 ScrollingCoordinator* scrollingCoordinator(); |
| 122 | 122 |
| 123 PassRefPtr<ClientRectList> nonFastScrollableRects(const LocalFrame*); | |
| 124 | |
| 125 Settings& settings() const { return *m_settings; } | 123 Settings& settings() const { return *m_settings; } |
| 126 | 124 |
| 127 UseCounter& useCounter() { return m_useCounter; } | 125 UseCounter& useCounter() { return m_useCounter; } |
| 128 | 126 |
| 129 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements
= b; } | 127 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements
= b; } |
| 130 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme
nts; } | 128 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme
nts; } |
| 131 | 129 |
| 132 void unmarkAllTextMatches(); | 130 void unmarkAllTextMatches(); |
| 133 | 131 |
| 134 float deviceScaleFactor() const { return m_deviceScaleFactor; } | 132 float deviceScaleFactor() const { return m_deviceScaleFactor; } |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; | 221 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; |
| 224 | 222 |
| 225 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 223 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 226 // FIXME: Most of the members of Page should move onto FrameHost. | 224 // FIXME: Most of the members of Page should move onto FrameHost. |
| 227 OwnPtr<FrameHost> m_frameHost; | 225 OwnPtr<FrameHost> m_frameHost; |
| 228 }; | 226 }; |
| 229 | 227 |
| 230 } // namespace blink | 228 } // namespace blink |
| 231 | 229 |
| 232 #endif // Page_h | 230 #endif // Page_h |
| OLD | NEW |