| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 // Return the current set of full-fledged, ordinary pages. | 113 // Return the current set of full-fledged, ordinary pages. |
| 114 // Each created and owned by a WebView. | 114 // Each created and owned by a WebView. |
| 115 // | 115 // |
| 116 // This set does not include Pages created for other, internal purposes | 116 // This set does not include Pages created for other, internal purposes |
| 117 // (SVGImages, inspector overlays, page popups etc.) | 117 // (SVGImages, inspector overlays, page popups etc.) |
| 118 static PageSet& ordinaryPages(); | 118 static PageSet& ordinaryPages(); |
| 119 | 119 |
| 120 static void platformColorsChanged(); | 120 static void platformColorsChanged(); |
| 121 | 121 |
| 122 // TODO(sashab): Remove this. |
| 122 FrameHost& frameHost() const { return *m_frameHost; } | 123 FrameHost& frameHost() const { return *m_frameHost; } |
| 123 | 124 |
| 124 void setNeedsRecalcStyleInAllFrames(); | 125 void setNeedsRecalcStyleInAllFrames(); |
| 125 void updateAcceleratedCompositingSettings(); | 126 void updateAcceleratedCompositingSettings(); |
| 126 | 127 |
| 127 ViewportDescription viewportDescription() const; | 128 ViewportDescription viewportDescription() const; |
| 128 | 129 |
| 129 static void refreshPlugins(); | 130 static void refreshPlugins(); |
| 130 PluginData* pluginData(SecurityOrigin* mainFrameOrigin) const; | 131 PluginData* pluginData(SecurityOrigin* mainFrameOrigin) const; |
| 131 | 132 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 // Page. | 300 // Page. |
| 300 // FIXME: Most of the members of Page should move onto FrameHost. | 301 // FIXME: Most of the members of Page should move onto FrameHost. |
| 301 Member<FrameHost> m_frameHost; | 302 Member<FrameHost> m_frameHost; |
| 302 }; | 303 }; |
| 303 | 304 |
| 304 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; | 305 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; |
| 305 | 306 |
| 306 } // namespace blink | 307 } // namespace blink |
| 307 | 308 |
| 308 #endif // Page_h | 309 #endif // Page_h |
| OLD | NEW |