| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 bool defersLoading() const { return m_defersLoading; } | 166 bool defersLoading() const { return m_defersLoading; } |
| 167 | 167 |
| 168 void setPageScaleFactor(float); | 168 void setPageScaleFactor(float); |
| 169 float pageScaleFactor() const; | 169 float pageScaleFactor() const; |
| 170 | 170 |
| 171 float deviceScaleFactor() const { return m_deviceScaleFactor; } | 171 float deviceScaleFactor() const { return m_deviceScaleFactor; } |
| 172 void setDeviceScaleFactor(float); | 172 void setDeviceScaleFactor(float); |
| 173 void setDeviceColorProfile(const Vector<char>&); | 173 void setDeviceColorProfile(const Vector<char>&); |
| 174 void resetDeviceColorProfileForTesting(); | 174 void resetDeviceColorProfileForTesting(); |
| 175 | 175 |
| 176 static void allVisitedStateChanged(); | 176 static void allVisitedStateChanged(bool invalidateVisitedLinkHashes); |
| 177 static void visitedStateChanged(LinkHash visitedHash); | 177 static void visitedStateChanged(LinkHash visitedHash); |
| 178 | 178 |
| 179 PageVisibilityState visibilityState() const; | 179 PageVisibilityState visibilityState() const; |
| 180 void setVisibilityState(PageVisibilityState, bool); | 180 void setVisibilityState(PageVisibilityState, bool); |
| 181 | 181 |
| 182 bool isCursorVisible() const; | 182 bool isCursorVisible() const; |
| 183 void setIsCursorVisible(bool isVisible) { m_isCursorVisible = isVisible; } | 183 void setIsCursorVisible(bool isVisible) { m_isCursorVisible = isVisible; } |
| 184 | 184 |
| 185 #if ENABLE(ASSERT) | 185 #if ENABLE(ASSERT) |
| 186 void setIsPainting(bool painting) { m_isPainting = painting; } | 186 void setIsPainting(bool painting) { m_isPainting = painting; } |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 OwnPtrWillBeMember<FrameHost> m_frameHost; | 278 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 279 | 279 |
| 280 OwnPtrWillBeMember<MemoryPurgeController> m_memoryPurgeController; | 280 OwnPtrWillBeMember<MemoryPurgeController> m_memoryPurgeController; |
| 281 }; | 281 }; |
| 282 | 282 |
| 283 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; | 283 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; |
| 284 | 284 |
| 285 } // namespace blink | 285 } // namespace blink |
| 286 | 286 |
| 287 #endif // Page_h | 287 #endif // Page_h |
| OLD | NEW |