| 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 28 matching lines...) Expand all Loading... |
| 39 #include "wtf/Forward.h" | 39 #include "wtf/Forward.h" |
| 40 #include "wtf/HashSet.h" | 40 #include "wtf/HashSet.h" |
| 41 #include "wtf/Noncopyable.h" | 41 #include "wtf/Noncopyable.h" |
| 42 #include "wtf/text/WTFString.h" | 42 #include "wtf/text/WTFString.h" |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class AutoscrollController; | 46 class AutoscrollController; |
| 47 class ChromeClient; | 47 class ChromeClient; |
| 48 class ClientRectList; | 48 class ClientRectList; |
| 49 class CompositedDisplayList; |
| 49 class ContextMenuClient; | 50 class ContextMenuClient; |
| 50 class ContextMenuController; | 51 class ContextMenuController; |
| 51 class Document; | 52 class Document; |
| 52 class DragCaretController; | 53 class DragCaretController; |
| 53 class DragClient; | 54 class DragClient; |
| 54 class DragController; | 55 class DragController; |
| 55 class EditorClient; | 56 class EditorClient; |
| 56 class FocusController; | 57 class FocusController; |
| 57 class Frame; | 58 class Frame; |
| 58 class FrameHost; | 59 class FrameHost; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 virtual void multisamplingChanged(bool) = 0; | 192 virtual void multisamplingChanged(bool) = 0; |
| 192 }; | 193 }; |
| 193 | 194 |
| 194 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); | 195 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); |
| 195 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); | 196 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); |
| 196 | 197 |
| 197 void didCommitLoad(LocalFrame*); | 198 void didCommitLoad(LocalFrame*); |
| 198 | 199 |
| 199 void acceptLanguagesChanged(); | 200 void acceptLanguagesChanged(); |
| 200 | 201 |
| 202 void setCompositedDisplayList(PassOwnPtr<CompositedDisplayList>); |
| 203 CompositedDisplayList* compositedDisplayListForTesting(); |
| 204 |
| 201 static void networkStateChanged(bool online); | 205 static void networkStateChanged(bool online); |
| 202 | 206 |
| 203 DECLARE_TRACE(); | 207 DECLARE_TRACE(); |
| 204 void willBeDestroyed(); | 208 void willBeDestroyed(); |
| 205 | 209 |
| 206 private: | 210 private: |
| 207 void initGroup(); | 211 void initGroup(); |
| 208 | 212 |
| 209 void setTimerAlignmentInterval(double); | 213 void setTimerAlignmentInterval(double); |
| 210 | 214 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 273 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 270 // FIXME: Most of the members of Page should move onto FrameHost. | 274 // FIXME: Most of the members of Page should move onto FrameHost. |
| 271 OwnPtrWillBeMember<FrameHost> m_frameHost; | 275 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 272 }; | 276 }; |
| 273 | 277 |
| 274 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; | 278 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; |
| 275 | 279 |
| 276 } // namespace blink | 280 } // namespace blink |
| 277 | 281 |
| 278 #endif // Page_h | 282 #endif // Page_h |
| OLD | NEW |