| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); | 155 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); |
| 156 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); | 156 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); |
| 157 | 157 |
| 158 void didCommitLoad(LocalFrame*); | 158 void didCommitLoad(LocalFrame*); |
| 159 | 159 |
| 160 void acceptLanguagesChanged(); | 160 void acceptLanguagesChanged(); |
| 161 | 161 |
| 162 static void networkStateChanged(bool online); | 162 static void networkStateChanged(bool online); |
| 163 PassOwnPtr<LifecycleNotifier<Page> > createLifecycleNotifier(); | 163 PassOwnPtr<LifecycleNotifier<Page> > createLifecycleNotifier(); |
| 164 | 164 |
| 165 void trace(Visitor*); | |
| 166 void willBeDestroyed(); | 165 void willBeDestroyed(); |
| 167 | 166 |
| 168 protected: | 167 protected: |
| 169 PageLifecycleNotifier& lifecycleNotifier(); | 168 PageLifecycleNotifier& lifecycleNotifier(); |
| 170 | 169 |
| 171 private: | 170 private: |
| 172 void initGroup(); | 171 void initGroup(); |
| 173 | 172 |
| 174 void setTimerAlignmentInterval(double); | 173 void setTimerAlignmentInterval(double); |
| 175 | 174 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; | 223 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; |
| 225 | 224 |
| 226 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 225 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 227 // FIXME: Most of the members of Page should move onto FrameHost. | 226 // FIXME: Most of the members of Page should move onto FrameHost. |
| 228 OwnPtr<FrameHost> m_frameHost; | 227 OwnPtr<FrameHost> m_frameHost; |
| 229 }; | 228 }; |
| 230 | 229 |
| 231 } // namespace blink | 230 } // namespace blink |
| 232 | 231 |
| 233 #endif // Page_h | 232 #endif // Page_h |
| OLD | NEW |