| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #include "core/loader/EmptyClients.h" | 82 #include "core/loader/EmptyClients.h" |
| 83 #include "core/loader/resource/ImageResourceContent.h" | 83 #include "core/loader/resource/ImageResourceContent.h" |
| 84 #include "core/page/DragData.h" | 84 #include "core/page/DragData.h" |
| 85 #include "core/page/EditorClient.h" | 85 #include "core/page/EditorClient.h" |
| 86 #include "core/page/FocusController.h" | 86 #include "core/page/FocusController.h" |
| 87 #include "core/page/Page.h" | 87 #include "core/page/Page.h" |
| 88 #include "core/svg/SVGImageElement.h" | 88 #include "core/svg/SVGImageElement.h" |
| 89 #include "platform/KillRing.h" | 89 #include "platform/KillRing.h" |
| 90 #include "platform/loader/fetch/ResourceFetcher.h" | 90 #include "platform/loader/fetch/ResourceFetcher.h" |
| 91 #include "platform/weborigin/KURL.h" | 91 #include "platform/weborigin/KURL.h" |
| 92 #include "wtf/PtrUtil.h" | 92 #include "platform/wtf/PtrUtil.h" |
| 93 #include "wtf/text/CharacterNames.h" | 93 #include "platform/wtf/text/CharacterNames.h" |
| 94 | 94 |
| 95 namespace blink { | 95 namespace blink { |
| 96 | 96 |
| 97 using namespace HTMLNames; | 97 using namespace HTMLNames; |
| 98 using namespace WTF; | 98 using namespace WTF; |
| 99 using namespace Unicode; | 99 using namespace Unicode; |
| 100 | 100 |
| 101 namespace { | 101 namespace { |
| 102 | 102 |
| 103 void DispatchInputEvent(Element* target, | 103 void DispatchInputEvent(Element* target, |
| (...skipping 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1837 | 1837 |
| 1838 DEFINE_TRACE(Editor) { | 1838 DEFINE_TRACE(Editor) { |
| 1839 visitor->Trace(frame_); | 1839 visitor->Trace(frame_); |
| 1840 visitor->Trace(last_edit_command_); | 1840 visitor->Trace(last_edit_command_); |
| 1841 visitor->Trace(undo_stack_); | 1841 visitor->Trace(undo_stack_); |
| 1842 visitor->Trace(mark_); | 1842 visitor->Trace(mark_); |
| 1843 visitor->Trace(typing_style_); | 1843 visitor->Trace(typing_style_); |
| 1844 } | 1844 } |
| 1845 | 1845 |
| 1846 } // namespace blink | 1846 } // namespace blink |
| OLD | NEW |