Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: third_party/WebKit/Source/core/editing/Editor.cpp

Issue 2817863002: Rewrite references to "wtf/" to "platform/wtf/" in core/editing. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/editing/EditingUtilities.cpp ('k') | third_party/WebKit/Source/core/editing/FrameSelection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698