| 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 16 matching lines...) Expand all Loading... |
| 27 #include "core/frame/HostsUsingFeatures.h" | 27 #include "core/frame/HostsUsingFeatures.h" |
| 28 #include "core/frame/LocalFrame.h" | 28 #include "core/frame/LocalFrame.h" |
| 29 #include "core/frame/SettingsDelegate.h" | 29 #include "core/frame/SettingsDelegate.h" |
| 30 #include "core/frame/UseCounter.h" | 30 #include "core/frame/UseCounter.h" |
| 31 #include "core/page/Page.h" | 31 #include "core/page/Page.h" |
| 32 #include "core/page/PageAnimator.h" | 32 #include "core/page/PageAnimator.h" |
| 33 #include "core/page/PageVisibilityNotifier.h" | 33 #include "core/page/PageVisibilityNotifier.h" |
| 34 #include "core/page/PageVisibilityObserver.h" | 34 #include "core/page/PageVisibilityObserver.h" |
| 35 #include "core/page/PageVisibilityState.h" | 35 #include "core/page/PageVisibilityState.h" |
| 36 #include "platform/Supplementable.h" | 36 #include "platform/Supplementable.h" |
| 37 #include "platform/Timer.h" | |
| 38 #include "platform/geometry/LayoutRect.h" | 37 #include "platform/geometry/LayoutRect.h" |
| 39 #include "platform/geometry/Region.h" | 38 #include "platform/geometry/Region.h" |
| 40 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
| 41 #include "wtf/Forward.h" | 40 #include "wtf/Forward.h" |
| 42 #include "wtf/HashSet.h" | 41 #include "wtf/HashSet.h" |
| 43 #include "wtf/Noncopyable.h" | 42 #include "wtf/Noncopyable.h" |
| 44 #include "wtf/text/WTFString.h" | 43 #include "wtf/text/WTFString.h" |
| 45 | 44 |
| 46 namespace blink { | 45 namespace blink { |
| 47 | 46 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 void willBeDestroyed(); | 205 void willBeDestroyed(); |
| 207 | 206 |
| 208 private: | 207 private: |
| 209 explicit Page(PageClients&); | 208 explicit Page(PageClients&); |
| 210 | 209 |
| 211 void initGroup(); | 210 void initGroup(); |
| 212 | 211 |
| 213 // SettingsDelegate overrides. | 212 // SettingsDelegate overrides. |
| 214 void settingsChanged(SettingsDelegate::ChangeType) override; | 213 void settingsChanged(SettingsDelegate::ChangeType) override; |
| 215 | 214 |
| 216 void compressStrings(TimerBase*); | |
| 217 | |
| 218 Member<PageAnimator> m_animator; | 215 Member<PageAnimator> m_animator; |
| 219 const Member<AutoscrollController> m_autoscrollController; | 216 const Member<AutoscrollController> m_autoscrollController; |
| 220 Member<ChromeClient> m_chromeClient; | 217 Member<ChromeClient> m_chromeClient; |
| 221 const Member<DragCaretController> m_dragCaretController; | 218 const Member<DragCaretController> m_dragCaretController; |
| 222 const Member<DragController> m_dragController; | 219 const Member<DragController> m_dragController; |
| 223 const Member<FocusController> m_focusController; | 220 const Member<FocusController> m_focusController; |
| 224 const Member<ContextMenuController> m_contextMenuController; | 221 const Member<ContextMenuController> m_contextMenuController; |
| 225 const Member<PointerLockController> m_pointerLockController; | 222 const Member<PointerLockController> m_pointerLockController; |
| 226 Member<ScrollingCoordinator> m_scrollingCoordinator; | 223 Member<ScrollingCoordinator> m_scrollingCoordinator; |
| 227 | 224 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 257 |
| 261 bool m_isCursorVisible; | 258 bool m_isCursorVisible; |
| 262 | 259 |
| 263 #if ENABLE(ASSERT) | 260 #if ENABLE(ASSERT) |
| 264 bool m_isPainting; | 261 bool m_isPainting; |
| 265 #endif | 262 #endif |
| 266 | 263 |
| 267 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 264 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 268 // FIXME: Most of the members of Page should move onto FrameHost. | 265 // FIXME: Most of the members of Page should move onto FrameHost. |
| 269 Member<FrameHost> m_frameHost; | 266 Member<FrameHost> m_frameHost; |
| 270 | |
| 271 Timer<Page> m_timerForCompressStrings; | |
| 272 }; | 267 }; |
| 273 | 268 |
| 274 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; | 269 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; |
| 275 | 270 |
| 276 } // namespace blink | 271 } // namespace blink |
| 277 | 272 |
| 278 #endif // Page_h | 273 #endif // Page_h |
| OLD | NEW |