| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 class ContextMenuClient; | 47 class ContextMenuClient; |
| 48 class ContextMenuController; | 48 class ContextMenuController; |
| 49 class Document; | 49 class Document; |
| 50 class DragCaretController; | 50 class DragCaretController; |
| 51 class DragClient; | 51 class DragClient; |
| 52 class DragController; | 52 class DragController; |
| 53 class EditorClient; | 53 class EditorClient; |
| 54 class FocusController; | 54 class FocusController; |
| 55 class Frame; | 55 class Frame; |
| 56 class FrameHost; | 56 class FrameHost; |
| 57 class HistoryItem; | |
| 58 class InspectorClient; | 57 class InspectorClient; |
| 59 class InspectorController; | 58 class InspectorController; |
| 60 class PageLifecycleNotifier; | 59 class PageLifecycleNotifier; |
| 61 class PlatformMouseEvent; | |
| 62 class PluginData; | 60 class PluginData; |
| 63 class PointerLockController; | 61 class PointerLockController; |
| 64 class Range; | |
| 65 class RenderBox; | |
| 66 class RenderObject; | |
| 67 class RenderTheme; | |
| 68 class StorageClient; | 62 class StorageClient; |
| 69 class VisibleSelection; | |
| 70 class ScrollableArea; | |
| 71 class ScrollingCoordinator; | 63 class ScrollingCoordinator; |
| 72 class Settings; | 64 class Settings; |
| 73 class SpellCheckerClient; | 65 class SpellCheckerClient; |
| 74 class StorageNamespace; | 66 class StorageNamespace; |
| 75 class UndoStack; | 67 class UndoStack; |
| 76 class ValidationMessageClient; | 68 class ValidationMessageClient; |
| 77 | 69 |
| 78 typedef uint64_t LinkHash; | 70 typedef uint64_t LinkHash; |
| 79 | 71 |
| 80 float deviceScaleFactor(LocalFrame*); | 72 float deviceScaleFactor(LocalFrame*); |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; | 300 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; |
| 309 | 301 |
| 310 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 302 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 311 // FIXME: Most of the members of Page should move onto FrameHost. | 303 // FIXME: Most of the members of Page should move onto FrameHost. |
| 312 OwnPtrWillBeMember<FrameHost> m_frameHost; | 304 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 313 }; | 305 }; |
| 314 | 306 |
| 315 } // namespace blink | 307 } // namespace blink |
| 316 | 308 |
| 317 #endif // Page_h | 309 #endif // Page_h |
| OLD | NEW |