| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 class FocusController; | 52 class FocusController; |
| 53 class Frame; | 53 class Frame; |
| 54 class FrameHost; | 54 class FrameHost; |
| 55 class IntRect; | 55 class IntRect; |
| 56 class LocalFrame; | 56 class LocalFrame; |
| 57 class Node; | 57 class Node; |
| 58 class PageLifecycleNotifier; | 58 class PageLifecycleNotifier; |
| 59 class Range; | 59 class Range; |
| 60 class RenderBox; | 60 class RenderBox; |
| 61 class RenderObject; | 61 class RenderObject; |
| 62 class ScrollableArea; | |
| 63 class ServiceProvider; | 62 class ServiceProvider; |
| 64 class Settings; | 63 class Settings; |
| 65 class SpellCheckerClient; | 64 class SpellCheckerClient; |
| 66 class UndoStack; | 65 class UndoStack; |
| 67 class VisibleSelection; | 66 class VisibleSelection; |
| 68 | 67 |
| 69 typedef uint64_t LinkHash; | 68 typedef uint64_t LinkHash; |
| 70 | 69 |
| 71 float deviceScaleFactor(LocalFrame*); | 70 float deviceScaleFactor(LocalFrame*); |
| 72 | 71 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; | 216 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; |
| 218 | 217 |
| 219 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 218 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 220 // FIXME: Most of the members of Page should move onto FrameHost. | 219 // FIXME: Most of the members of Page should move onto FrameHost. |
| 221 OwnPtr<FrameHost> m_frameHost; | 220 OwnPtr<FrameHost> m_frameHost; |
| 222 }; | 221 }; |
| 223 | 222 |
| 224 } // namespace blink | 223 } // namespace blink |
| 225 | 224 |
| 226 #endif // SKY_ENGINE_CORE_PAGE_PAGE_H_ | 225 #endif // SKY_ENGINE_CORE_PAGE_PAGE_H_ |
| OLD | NEW |