| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 | 208 |
| 209 OwnPtr<Chrome> m_chrome; | 209 OwnPtr<Chrome> m_chrome; |
| 210 OwnPtr<SelectionController> m_dragCaretController; | 210 OwnPtr<SelectionController> m_dragCaretController; |
| 211 OwnPtr<DragController> m_dragController; | 211 OwnPtr<DragController> m_dragController; |
| 212 OwnPtr<FocusController> m_focusController; | 212 OwnPtr<FocusController> m_focusController; |
| 213 OwnPtr<ContextMenuController> m_contextMenuController; | 213 OwnPtr<ContextMenuController> m_contextMenuController; |
| 214 #if USE(V8) | 214 #if USE(V8) |
| 215 // To fix crash in inspector window (Bug 904340) | 215 // To fix crash in inspector window (Bug 904340) |
| 216 RefPtr<InspectorController> m_inspectorController; | 216 RefPtr<InspectorController> m_inspectorController; |
| 217 #else | 217 #else |
| 218 OwnPtr<InspectorController> m_inspectorController; | |
| 219 #endif | 218 #endif |
| 220 OwnPtr<Settings> m_settings; | 219 OwnPtr<Settings> m_settings; |
| 221 OwnPtr<ProgressTracker> m_progress; | 220 OwnPtr<ProgressTracker> m_progress; |
| 222 | 221 |
| 223 RefPtr<BackForwardList> m_backForwardList; | 222 RefPtr<BackForwardList> m_backForwardList; |
| 224 RefPtr<Frame> m_mainFrame; | 223 RefPtr<Frame> m_mainFrame; |
| 225 | 224 |
| 226 RefPtr<HistoryItem> m_globalHistoryItem; | 225 RefPtr<HistoryItem> m_globalHistoryItem; |
| 227 | 226 |
| 228 mutable RefPtr<PluginData> m_pluginData; | 227 mutable RefPtr<PluginData> m_pluginData; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 #if ENABLE(WML) | 270 #if ENABLE(WML) |
| 272 OwnPtr<WMLPageState> m_wmlPageState; | 271 OwnPtr<WMLPageState> m_wmlPageState; |
| 273 #endif | 272 #endif |
| 274 }; | 273 }; |
| 275 | 274 |
| 276 } // namespace WebCore | 275 } // namespace WebCore |
| 277 | 276 |
| 278 #endif // Page_h | 277 #endif // Page_h |
| 279 | 278 |
| 280 | 279 |
| OLD | NEW |