| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 | 160 |
| 161 Settings& settings() const { return *m_settings; } | 161 Settings& settings() const { return *m_settings; } |
| 162 | 162 |
| 163 UseCounter& useCounter() { return m_useCounter; } | 163 UseCounter& useCounter() { return m_useCounter; } |
| 164 Deprecation& deprecation() { return m_deprecation; } | 164 Deprecation& deprecation() { return m_deprecation; } |
| 165 OriginsUsingFeatures& originsUsingFeatures() { return m_originsUsingFeatures
; } | 165 OriginsUsingFeatures& originsUsingFeatures() { return m_originsUsingFeatures
; } |
| 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(); | |
| 171 | |
| 172 // DefersLoading is used to delay loads during modal dialogs. | 170 // DefersLoading is used to delay loads during modal dialogs. |
| 173 // Modal dialogs are supposed to freeze all background processes | 171 // Modal dialogs are supposed to freeze all background processes |
| 174 // in the page, including prevent additional loads from staring/continuing. | 172 // in the page, including prevent additional loads from staring/continuing. |
| 175 void setDefersLoading(bool); | 173 void setDefersLoading(bool); |
| 176 bool defersLoading() const { return m_defersLoading; } | 174 bool defersLoading() const { return m_defersLoading; } |
| 177 | 175 |
| 178 void setPageScaleFactor(float); | 176 void setPageScaleFactor(float); |
| 179 float pageScaleFactor() const; | 177 float pageScaleFactor() const; |
| 180 | 178 |
| 181 float deviceScaleFactor() const { return m_deviceScaleFactor; } | 179 float deviceScaleFactor() const { return m_deviceScaleFactor; } |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 Member<MemoryPurgeController> m_memoryPurgeController; | 280 Member<MemoryPurgeController> m_memoryPurgeController; |
| 283 | 281 |
| 284 Timer<Page> m_timerForCompressStrings; | 282 Timer<Page> m_timerForCompressStrings; |
| 285 }; | 283 }; |
| 286 | 284 |
| 287 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; | 285 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; |
| 288 | 286 |
| 289 } // namespace blink | 287 } // namespace blink |
| 290 | 288 |
| 291 #endif // Page_h | 289 #endif // Page_h |
| OLD | NEW |