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

Side by Side Diff: third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.h

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) 2005, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef CompositeEditCommand_h 26 #ifndef CompositeEditCommand_h
27 #define CompositeEditCommand_h 27 #define CompositeEditCommand_h
28 28
29 #include "core/CSSPropertyNames.h" 29 #include "core/CSSPropertyNames.h"
30 #include "core/CoreExport.h" 30 #include "core/CoreExport.h"
31 #include "core/editing/commands/EditCommand.h" 31 #include "core/editing/commands/EditCommand.h"
32 #include "core/editing/commands/EditingState.h" 32 #include "core/editing/commands/EditingState.h"
33 #include "core/editing/commands/UndoStep.h" 33 #include "core/editing/commands/UndoStep.h"
34 #include "wtf/Vector.h" 34 #include "platform/wtf/Vector.h"
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class EditingStyle; 38 class EditingStyle;
39 class Element; 39 class Element;
40 class HTMLBRElement; 40 class HTMLBRElement;
41 class HTMLElement; 41 class HTMLElement;
42 class HTMLSpanElement; 42 class HTMLSpanElement;
43 class Text; 43 class Text;
44 44
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 233
234 DEFINE_TYPE_CASTS(CompositeEditCommand, 234 DEFINE_TYPE_CASTS(CompositeEditCommand,
235 EditCommand, 235 EditCommand,
236 command, 236 command,
237 command->IsCompositeEditCommand(), 237 command->IsCompositeEditCommand(),
238 command.IsCompositeEditCommand()); 238 command.IsCompositeEditCommand());
239 239
240 } // namespace blink 240 } // namespace blink
241 241
242 #endif // CompositeEditCommand_h 242 #endif // CompositeEditCommand_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698