| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 DragController& dragController() const { return *m_dragController; } | 136 DragController& dragController() const { return *m_dragController; } |
| 137 FocusController& focusController() const { return *m_focusController; } | 137 FocusController& focusController() const { return *m_focusController; } |
| 138 ContextMenuController& contextMenuController() const { return *m_contextMenu
Controller; } | 138 ContextMenuController& contextMenuController() const { return *m_contextMenu
Controller; } |
| 139 PointerLockController& pointerLockController() const { return *m_pointerLock
Controller; } | 139 PointerLockController& pointerLockController() const { return *m_pointerLock
Controller; } |
| 140 ValidationMessageClient& validationMessageClient() const { return *m_validat
ionMessageClient; } | 140 ValidationMessageClient& validationMessageClient() const { return *m_validat
ionMessageClient; } |
| 141 void setValidationMessageClient(PassOwnPtrWillBeRawPtr<ValidationMessageClie
nt>); | 141 void setValidationMessageClient(PassOwnPtrWillBeRawPtr<ValidationMessageClie
nt>); |
| 142 | 142 |
| 143 ScrollingCoordinator* scrollingCoordinator(); | 143 ScrollingCoordinator* scrollingCoordinator(); |
| 144 | 144 |
| 145 String mainThreadScrollingReasonsAsText(); | 145 String mainThreadScrollingReasonsAsText(); |
| 146 PassRefPtrWillBeRawPtr<ClientRectList> nonFastScrollableRects(const LocalFra
me*); | 146 ClientRectList* nonFastScrollableRects(const LocalFrame*); |
| 147 | 147 |
| 148 Settings& settings() const { return *m_settings; } | 148 Settings& settings() const { return *m_settings; } |
| 149 | 149 |
| 150 UseCounter& useCounter() { return m_useCounter; } | 150 UseCounter& useCounter() { return m_useCounter; } |
| 151 OriginsUsingFeatures& originsUsingFeatures() { return m_originsUsingFeatures
; } | 151 OriginsUsingFeatures& originsUsingFeatures() { return m_originsUsingFeatures
; } |
| 152 | 152 |
| 153 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements
= b; } | 153 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements
= b; } |
| 154 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme
nts; } | 154 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme
nts; } |
| 155 | 155 |
| 156 void unmarkAllTextMatches(); | 156 void unmarkAllTextMatches(); |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 268 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 269 // FIXME: Most of the members of Page should move onto FrameHost. | 269 // FIXME: Most of the members of Page should move onto FrameHost. |
| 270 OwnPtrWillBeMember<FrameHost> m_frameHost; | 270 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 271 }; | 271 }; |
| 272 | 272 |
| 273 extern template class CORE_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; | 273 extern template class CORE_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; |
| 274 | 274 |
| 275 } // namespace blink | 275 } // namespace blink |
| 276 | 276 |
| 277 #endif // Page_h | 277 #endif // Page_h |
| OLD | NEW |