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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 111 |
112 // This method returns all pages, incl. private ones associated with | 112 // This method returns all pages, incl. private ones associated with |
113 // inspector overlay, popups, SVGImage, etc. | 113 // inspector overlay, popups, SVGImage, etc. |
114 static HashSet<Page*>& allPages(); | 114 static HashSet<Page*>& allPages(); |
115 // This method returns all ordinary pages. | 115 // This method returns all ordinary pages. |
116 static HashSet<Page*>& ordinaryPages(); | 116 static HashSet<Page*>& ordinaryPages(); |
117 | 117 |
118 FrameHost& frameHost() { return *m_frameHost; } | 118 FrameHost& frameHost() { return *m_frameHost; } |
119 | 119 |
120 void setNeedsRecalcStyleInAllFrames(); | 120 void setNeedsRecalcStyleInAllFrames(); |
| 121 void updateAcceleratedCompositingSettings(); |
121 | 122 |
122 ViewportDescription viewportDescription() const; | 123 ViewportDescription viewportDescription() const; |
123 | 124 |
124 static void refreshPlugins(bool reload); | 125 static void refreshPlugins(bool reload); |
125 PluginData* pluginData() const; | 126 PluginData* pluginData() const; |
126 | 127 |
127 EditorClient& editorClient() const { return *m_editorClient; } | 128 EditorClient& editorClient() const { return *m_editorClient; } |
128 SpellCheckerClient& spellCheckerClient() const { return *m_spellCheckerClien
t; } | 129 SpellCheckerClient& spellCheckerClient() const { return *m_spellCheckerClien
t; } |
129 UndoStack& undoStack() const { return *m_undoStack; } | 130 UndoStack& undoStack() const { return *m_undoStack; } |
130 | 131 |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; | 289 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; |
289 | 290 |
290 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 291 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
291 // FIXME: Most of the members of Page should move onto FrameHost. | 292 // FIXME: Most of the members of Page should move onto FrameHost. |
292 OwnPtr<FrameHost> m_frameHost; | 293 OwnPtr<FrameHost> m_frameHost; |
293 }; | 294 }; |
294 | 295 |
295 } // namespace WebCore | 296 } // namespace WebCore |
296 | 297 |
297 #endif // Page_h | 298 #endif // Page_h |
OLD | NEW |