| 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 | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 9 * reserved. | 9 * reserved. |
| 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 class FrameConsole; | 58 class FrameConsole; |
| 59 class FrameSelection; | 59 class FrameSelection; |
| 60 class FrameView; | 60 class FrameView; |
| 61 class InputMethodController; | 61 class InputMethodController; |
| 62 class InspectorWebPerfAgent; | 62 class InspectorWebPerfAgent; |
| 63 class InstrumentingAgents; | 63 class InstrumentingAgents; |
| 64 class InterfaceProvider; | 64 class InterfaceProvider; |
| 65 class InterfaceRegistry; | 65 class InterfaceRegistry; |
| 66 class IntPoint; | 66 class IntPoint; |
| 67 class IntSize; | 67 class IntSize; |
| 68 class JSONObject; | |
| 69 class LayoutView; | 68 class LayoutView; |
| 70 class LayoutViewItem; | 69 class LayoutViewItem; |
| 71 class LocalDOMWindow; | 70 class LocalDOMWindow; |
| 72 class NavigationScheduler; | 71 class NavigationScheduler; |
| 73 class Node; | 72 class Node; |
| 74 class NodeTraversal; | 73 class NodeTraversal; |
| 75 class Performance; | 74 class Performance; |
| 76 template <typename Strategy> | 75 template <typename Strategy> |
| 77 class PositionWithAffinityTemplate; | 76 class PositionWithAffinityTemplate; |
| 78 class PluginData; | 77 class PluginData; |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 explicit ScopedFrameBlamer(LocalFrame*); | 377 explicit ScopedFrameBlamer(LocalFrame*); |
| 379 ~ScopedFrameBlamer(); | 378 ~ScopedFrameBlamer(); |
| 380 | 379 |
| 381 private: | 380 private: |
| 382 Member<LocalFrame> m_frame; | 381 Member<LocalFrame> m_frame; |
| 383 }; | 382 }; |
| 384 | 383 |
| 385 } // namespace blink | 384 } // namespace blink |
| 386 | 385 |
| 387 #endif // LocalFrame_h | 386 #endif // LocalFrame_h |
| OLD | NEW |