OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
3 * 1999-2001 Lars Knoll <knoll@kde.org> | 3 * 1999-2001 Lars Knoll <knoll@kde.org> |
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> | 4 * 1999-2001 Antti Koivisto <koivisto@kde.org> |
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> | 5 * 2000-2001 Simon Hausmann <hausmann@kde.org> |
6 * 2000-2001 Dirk Mueller <mueller@kde.org> | 6 * 2000-2001 Dirk Mueller <mueller@kde.org> |
7 * 2000 Stefan Schimanski <1Stein@gmx.de> | 7 * 2000 Stefan Schimanski <1Stein@gmx.de> |
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 class EventHandler; | 54 class EventHandler; |
55 class FloatSize; | 55 class FloatSize; |
56 class FrameConsole; | 56 class FrameConsole; |
57 class FrameSelection; | 57 class FrameSelection; |
58 class FrameView; | 58 class FrameView; |
59 class HTMLPlugInElement; | 59 class HTMLPlugInElement; |
60 class InputMethodController; | 60 class InputMethodController; |
61 class IntPoint; | 61 class IntPoint; |
62 class IntSize; | 62 class IntSize; |
63 class InstrumentingAgents; | 63 class InstrumentingAgents; |
| 64 class JSONObject; |
64 class LayoutView; | 65 class LayoutView; |
65 class LayoutViewItem; | 66 class LayoutViewItem; |
66 class LocalDOMWindow; | 67 class LocalDOMWindow; |
67 class NavigationScheduler; | 68 class NavigationScheduler; |
68 class Node; | 69 class Node; |
69 class NodeTraversal; | 70 class NodeTraversal; |
70 template <typename Strategy> class PositionWithAffinityTemplate; | 71 template <typename Strategy> class PositionWithAffinityTemplate; |
71 class PluginData; | 72 class PluginData; |
72 class Range; | 73 class Range; |
73 class ScriptController; | 74 class ScriptController; |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 explicit ScopedFrameBlamer(LocalFrame*); | 333 explicit ScopedFrameBlamer(LocalFrame*); |
333 ~ScopedFrameBlamer(); | 334 ~ScopedFrameBlamer(); |
334 | 335 |
335 private: | 336 private: |
336 Member<LocalFrame> m_frame; | 337 Member<LocalFrame> m_frame; |
337 }; | 338 }; |
338 | 339 |
339 } // namespace blink | 340 } // namespace blink |
340 | 341 |
341 #endif // LocalFrame_h | 342 #endif // LocalFrame_h |
OLD | NEW |