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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |