| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. | 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. |
| 5 * (http://www.torchmobile.com/) | 5 * (http://www.torchmobile.com/) |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 PointerLockController& pointerLockController() const { | 164 PointerLockController& pointerLockController() const { |
| 165 return *m_pointerLockController; | 165 return *m_pointerLockController; |
| 166 } | 166 } |
| 167 ValidationMessageClient& validationMessageClient() const { | 167 ValidationMessageClient& validationMessageClient() const { |
| 168 return *m_validationMessageClient; | 168 return *m_validationMessageClient; |
| 169 } | 169 } |
| 170 void setValidationMessageClient(ValidationMessageClient*); | 170 void setValidationMessageClient(ValidationMessageClient*); |
| 171 | 171 |
| 172 ScrollingCoordinator* scrollingCoordinator(); | 172 ScrollingCoordinator* scrollingCoordinator(); |
| 173 | 173 |
| 174 String mainThreadScrollingReasonsAsText(); | 174 String mainThreadScrollingReasonsAsText(Frame*); |
| 175 ClientRectList* nonFastScrollableRects(const LocalFrame*); | 175 ClientRectList* nonFastScrollableRects(const LocalFrame*); |
| 176 | 176 |
| 177 Settings& settings() const { return *m_settings; } | 177 Settings& settings() const { return *m_settings; } |
| 178 | 178 |
| 179 UseCounter& useCounter() { return m_useCounter; } | 179 UseCounter& useCounter() { return m_useCounter; } |
| 180 Deprecation& deprecation() { return m_deprecation; } | 180 Deprecation& deprecation() { return m_deprecation; } |
| 181 HostsUsingFeatures& hostsUsingFeatures() { return m_hostsUsingFeatures; } | 181 HostsUsingFeatures& hostsUsingFeatures() { return m_hostsUsingFeatures; } |
| 182 | 182 |
| 183 void setTabKeyCyclesThroughElements(bool b) { | 183 void setTabKeyCyclesThroughElements(bool b) { |
| 184 m_tabKeyCyclesThroughElements = b; | 184 m_tabKeyCyclesThroughElements = b; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 // Page. | 288 // Page. |
| 289 // FIXME: Most of the members of Page should move onto FrameHost. | 289 // FIXME: Most of the members of Page should move onto FrameHost. |
| 290 Member<FrameHost> m_frameHost; | 290 Member<FrameHost> m_frameHost; |
| 291 }; | 291 }; |
| 292 | 292 |
| 293 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; | 293 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; |
| 294 | 294 |
| 295 } // namespace blink | 295 } // namespace blink |
| 296 | 296 |
| 297 #endif // Page_h | 297 #endif // Page_h |
| OLD | NEW |