Chromium Code Reviews| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 46 class ContextMenuClient; | 46 class ContextMenuClient; |
| 47 class ContextMenuController; | 47 class ContextMenuController; |
| 48 class Document; | 48 class Document; |
| 49 class DragCaretController; | 49 class DragCaretController; |
| 50 class DragClient; | 50 class DragClient; |
| 51 class DragController; | 51 class DragController; |
| 52 class EditorClient; | 52 class EditorClient; |
| 53 class FocusController; | 53 class FocusController; |
| 54 class Frame; | 54 class Frame; |
| 55 class FrameHost; | 55 class FrameHost; |
| 56 class GraphicsLayer; | |
|
Rick Byers
2015/01/12 22:36:27
nit: you don't need this here anymore, right?
majidvp
2015/01/13 16:01:56
Done.
| |
| 56 class InspectorClient; | 57 class InspectorClient; |
| 57 class InspectorController; | 58 class InspectorController; |
| 58 class PageLifecycleNotifier; | 59 class PageLifecycleNotifier; |
| 59 class PluginData; | 60 class PluginData; |
| 60 class PointerLockController; | 61 class PointerLockController; |
| 61 class StorageClient; | 62 class StorageClient; |
| 62 class ScrollingCoordinator; | 63 class ScrollingCoordinator; |
| 63 class Settings; | 64 class Settings; |
| 64 class SpellCheckerClient; | 65 class SpellCheckerClient; |
| 65 class StorageNamespace; | 66 class StorageNamespace; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 279 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver>> m_mu ltisamplingChangedObservers; | 280 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver>> m_mu ltisamplingChangedObservers; |
| 280 | 281 |
| 281 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. | 282 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. |
| 282 // FIXME: Most of the members of Page should move onto FrameHost. | 283 // FIXME: Most of the members of Page should move onto FrameHost. |
| 283 OwnPtrWillBeMember<FrameHost> m_frameHost; | 284 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 284 }; | 285 }; |
| 285 | 286 |
| 286 } // namespace blink | 287 } // namespace blink |
| 287 | 288 |
| 288 #endif // Page_h | 289 #endif // Page_h |
| OLD | NEW |