| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 WTF_MAKE_NONCOPYABLE(PageClients); WTF_MAKE_FAST_ALLOCATED; | 77 WTF_MAKE_NONCOPYABLE(PageClients); WTF_MAKE_FAST_ALLOCATED; |
| 78 public: | 78 public: |
| 79 PageClients(); | 79 PageClients(); |
| 80 ~PageClients(); | 80 ~PageClients(); |
| 81 | 81 |
| 82 ChromeClient* chromeClient; | 82 ChromeClient* chromeClient; |
| 83 EditorClient* editorClient; | 83 EditorClient* editorClient; |
| 84 SpellCheckerClient* spellCheckerClient; | 84 SpellCheckerClient* spellCheckerClient; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 Page(PageClients&, ServiceProvider&); | 87 Page(PageClients&, ServiceProvider*); |
| 88 virtual ~Page(); | 88 virtual ~Page(); |
| 89 | 89 |
| 90 FrameHost& frameHost() const { return *m_frameHost; } | 90 FrameHost& frameHost() const { return *m_frameHost; } |
| 91 | 91 |
| 92 void setNeedsRecalcStyleInAllFrames(); | 92 void setNeedsRecalcStyleInAllFrames(); |
| 93 | 93 |
| 94 EditorClient& editorClient() const { return *m_editorClient; } | 94 EditorClient& editorClient() const { return *m_editorClient; } |
| 95 SpellCheckerClient& spellCheckerClient() const { return *m_spellCheckerClien
t; } | 95 SpellCheckerClient& spellCheckerClient() const { return *m_spellCheckerClien
t; } |
| 96 UndoStack& undoStack() const { return *m_undoStack; } | 96 UndoStack& undoStack() const { return *m_undoStack; } |
| 97 | 97 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; | 213 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve
rs; |
| 214 | 214 |
| 215 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 215 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 216 // FIXME: Most of the members of Page should move onto FrameHost. | 216 // FIXME: Most of the members of Page should move onto FrameHost. |
| 217 OwnPtr<FrameHost> m_frameHost; | 217 OwnPtr<FrameHost> m_frameHost; |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 } // namespace blink | 220 } // namespace blink |
| 221 | 221 |
| 222 #endif // SKY_ENGINE_CORE_PAGE_PAGE_H_ | 222 #endif // SKY_ENGINE_CORE_PAGE_PAGE_H_ |
| OLD | NEW |