| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. | 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. |
| 5 * (http://www.torchmobile.com/) | 5 * (http://www.torchmobile.com/) |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 #endif | 219 #endif |
| 220 | 220 |
| 221 void didCommitLoad(LocalFrame*); | 221 void didCommitLoad(LocalFrame*); |
| 222 | 222 |
| 223 void acceptLanguagesChanged(); | 223 void acceptLanguagesChanged(); |
| 224 | 224 |
| 225 static void networkStateChanged(bool online); | 225 static void networkStateChanged(bool online); |
| 226 | 226 |
| 227 DECLARE_TRACE(); | 227 DECLARE_TRACE(); |
| 228 | 228 |
| 229 void layerTreeViewInitialized(WebLayerTreeView&); | 229 void layerTreeViewInitialized(WebLayerTreeView&, FrameView*); |
| 230 void willCloseLayerTreeView(WebLayerTreeView&); | 230 void willCloseLayerTreeView(WebLayerTreeView&, FrameView*); |
| 231 | 231 |
| 232 void willBeDestroyed(); | 232 void willBeDestroyed(); |
| 233 | 233 |
| 234 private: | 234 private: |
| 235 friend class ScopedPageSuspender; | 235 friend class ScopedPageSuspender; |
| 236 | 236 |
| 237 explicit Page(PageClients&); | 237 explicit Page(PageClients&); |
| 238 | 238 |
| 239 void initGroup(); | 239 void initGroup(); |
| 240 | 240 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 // Page. | 303 // Page. |
| 304 // FIXME: Most of the members of Page should move onto FrameHost. | 304 // FIXME: Most of the members of Page should move onto FrameHost. |
| 305 Member<FrameHost> m_frameHost; | 305 Member<FrameHost> m_frameHost; |
| 306 }; | 306 }; |
| 307 | 307 |
| 308 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; | 308 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; |
| 309 | 309 |
| 310 } // namespace blink | 310 } // namespace blink |
| 311 | 311 |
| 312 #endif // Page_h | 312 #endif // Page_h |
| OLD | NEW |