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; | |
65 class LayoutView; | 64 class LayoutView; |
66 class LayoutViewItem; | 65 class LayoutViewItem; |
67 class LocalDOMWindow; | 66 class LocalDOMWindow; |
68 class NavigationScheduler; | 67 class NavigationScheduler; |
69 class Node; | 68 class Node; |
70 class NodeTraversal; | 69 class NodeTraversal; |
71 template <typename Strategy> class PositionWithAffinityTemplate; | 70 template <typename Strategy> class PositionWithAffinityTemplate; |
72 class PluginData; | 71 class PluginData; |
73 class Range; | 72 class Range; |
74 class ScriptController; | 73 class ScriptController; |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 explicit ScopedFrameBlamer(LocalFrame*); | 332 explicit ScopedFrameBlamer(LocalFrame*); |
334 ~ScopedFrameBlamer(); | 333 ~ScopedFrameBlamer(); |
335 | 334 |
336 private: | 335 private: |
337 Member<LocalFrame> m_frame; | 336 Member<LocalFrame> m_frame; |
338 }; | 337 }; |
339 | 338 |
340 } // namespace blink | 339 } // namespace blink |
341 | 340 |
342 #endif // LocalFrame_h | 341 #endif // LocalFrame_h |
OLD | NEW |