| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "core/fetch/ResourceFetcher.h" | 66 #include "core/fetch/ResourceFetcher.h" |
| 67 #include "core/frame/FrameView.h" | 67 #include "core/frame/FrameView.h" |
| 68 #include "core/frame/LocalFrame.h" | 68 #include "core/frame/LocalFrame.h" |
| 69 #include "core/frame/Settings.h" | 69 #include "core/frame/Settings.h" |
| 70 #include "core/frame/UseCounter.h" | 70 #include "core/frame/UseCounter.h" |
| 71 #include "core/html/HTMLCanvasElement.h" | 71 #include "core/html/HTMLCanvasElement.h" |
| 72 #include "core/html/HTMLImageElement.h" | 72 #include "core/html/HTMLImageElement.h" |
| 73 #include "core/html/HTMLInputElement.h" | 73 #include "core/html/HTMLInputElement.h" |
| 74 #include "core/html/HTMLTextAreaElement.h" | 74 #include "core/html/HTMLTextAreaElement.h" |
| 75 #include "core/html/parser/HTMLParserIdioms.h" | 75 #include "core/html/parser/HTMLParserIdioms.h" |
| 76 #include "core/input/EventHandler.h" |
| 76 #include "core/layout/HitTestResult.h" | 77 #include "core/layout/HitTestResult.h" |
| 77 #include "core/layout/LayoutImage.h" | 78 #include "core/layout/LayoutImage.h" |
| 78 #include "core/loader/EmptyClients.h" | 79 #include "core/loader/EmptyClients.h" |
| 79 #include "core/page/EditorClient.h" | 80 #include "core/page/EditorClient.h" |
| 80 #include "core/page/EventHandler.h" | |
| 81 #include "core/page/FocusController.h" | 81 #include "core/page/FocusController.h" |
| 82 #include "core/page/Page.h" | 82 #include "core/page/Page.h" |
| 83 #include "core/svg/SVGImageElement.h" | 83 #include "core/svg/SVGImageElement.h" |
| 84 #include "platform/KillRing.h" | 84 #include "platform/KillRing.h" |
| 85 #include "platform/weborigin/KURL.h" | 85 #include "platform/weborigin/KURL.h" |
| 86 #include "wtf/unicode/CharacterNames.h" | 86 #include "wtf/unicode/CharacterNames.h" |
| 87 | 87 |
| 88 namespace blink { | 88 namespace blink { |
| 89 | 89 |
| 90 using namespace HTMLNames; | 90 using namespace HTMLNames; |
| (...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1267 } | 1267 } |
| 1268 | 1268 |
| 1269 DEFINE_TRACE(Editor) | 1269 DEFINE_TRACE(Editor) |
| 1270 { | 1270 { |
| 1271 visitor->trace(m_frame); | 1271 visitor->trace(m_frame); |
| 1272 visitor->trace(m_lastEditCommand); | 1272 visitor->trace(m_lastEditCommand); |
| 1273 visitor->trace(m_mark); | 1273 visitor->trace(m_mark); |
| 1274 } | 1274 } |
| 1275 | 1275 |
| 1276 } // namespace blink | 1276 } // namespace blink |
| OLD | NEW |