| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 class ContextMenuClient; | 45 class ContextMenuClient; |
| 46 class ContextMenuController; | 46 class ContextMenuController; |
| 47 class Document; | 47 class Document; |
| 48 class DragCaretController; | 48 class DragCaretController; |
| 49 class DragClient; | 49 class DragClient; |
| 50 class DragController; | 50 class DragController; |
| 51 class EditorClient; | 51 class EditorClient; |
| 52 class FocusController; | 52 class FocusController; |
| 53 class LocalFrame; | 53 class LocalFrame; |
| 54 class FrameHost; | 54 class FrameHost; |
| 55 class FrameSelection; | |
| 56 class HaltablePlugin; | |
| 57 class HistoryItem; | 55 class HistoryItem; |
| 58 class InspectorClient; | 56 class InspectorClient; |
| 59 class InspectorController; | 57 class InspectorController; |
| 60 class Node; | |
| 61 class PageLifecycleNotifier; | 58 class PageLifecycleNotifier; |
| 62 class PlatformMouseEvent; | 59 class PlatformMouseEvent; |
| 63 class PluginData; | 60 class PluginData; |
| 64 class PointerLockController; | 61 class PointerLockController; |
| 65 class Range; | 62 class Range; |
| 66 class RenderBox; | 63 class RenderBox; |
| 67 class RenderObject; | 64 class RenderObject; |
| 68 class RenderTheme; | 65 class RenderTheme; |
| 69 class StorageClient; | 66 class StorageClient; |
| 70 class VisibleSelection; | 67 class VisibleSelection; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; | 284 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; |
| 288 | 285 |
| 289 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 286 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 290 // FIXME: Most of the members of Page should move onto FrameHost. | 287 // FIXME: Most of the members of Page should move onto FrameHost. |
| 291 OwnPtr<FrameHost> m_frameHost; | 288 OwnPtr<FrameHost> m_frameHost; |
| 292 }; | 289 }; |
| 293 | 290 |
| 294 } // namespace WebCore | 291 } // namespace WebCore |
| 295 | 292 |
| 296 #endif // Page_h | 293 #endif // Page_h |
| OLD | NEW |