| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); | 192 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); |
| 193 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); | 193 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); |
| 194 | 194 |
| 195 void didCommitLoad(LocalFrame*); | 195 void didCommitLoad(LocalFrame*); |
| 196 | 196 |
| 197 void acceptLanguagesChanged(); | 197 void acceptLanguagesChanged(); |
| 198 | 198 |
| 199 static void networkStateChanged(bool online); | 199 static void networkStateChanged(bool online); |
| 200 | 200 |
| 201 void trace(Visitor*); | 201 DECLARE_TRACE(); |
| 202 void willBeDestroyed(); | 202 void willBeDestroyed(); |
| 203 | 203 |
| 204 private: | 204 private: |
| 205 void initGroup(); | 205 void initGroup(); |
| 206 | 206 |
| 207 void setTimerAlignmentInterval(double); | 207 void setTimerAlignmentInterval(double); |
| 208 | 208 |
| 209 void setNeedsLayoutInAllFrames(); | 209 void setNeedsLayoutInAllFrames(); |
| 210 | 210 |
| 211 // SettingsDelegate overrides. | 211 // SettingsDelegate overrides. |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver>> m_mu
ltisamplingChangedObservers; | 265 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver>> m_mu
ltisamplingChangedObservers; |
| 266 | 266 |
| 267 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 267 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 268 // FIXME: Most of the members of Page should move onto FrameHost. | 268 // FIXME: Most of the members of Page should move onto FrameHost. |
| 269 OwnPtrWillBeMember<FrameHost> m_frameHost; | 269 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 270 }; | 270 }; |
| 271 | 271 |
| 272 } // namespace blink | 272 } // namespace blink |
| 273 | 273 |
| 274 #endif // Page_h | 274 #endif // Page_h |
| OLD | NEW |