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

Side by Side Diff: Source/core/editing/EditCommand.h

Issue 584023005: Clean up forward declarations in Source/core/editing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/core/editing/DOMSelection.h ('k') | Source/core/editing/EditingStyle.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 16 matching lines...) Expand all
27 #define EditCommand_h 27 #define EditCommand_h
28 28
29 #include "core/editing/EditAction.h" 29 #include "core/editing/EditAction.h"
30 #include "core/editing/VisibleSelection.h" 30 #include "core/editing/VisibleSelection.h"
31 #include "platform/heap/Handle.h" 31 #include "platform/heap/Handle.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class CompositeEditCommand; 35 class CompositeEditCommand;
36 class Document; 36 class Document;
37 class Element;
38 37
39 class EditCommand : public RefCountedWillBeGarbageCollectedFinalized<EditCommand > { 38 class EditCommand : public RefCountedWillBeGarbageCollectedFinalized<EditCommand > {
40 public: 39 public:
41 virtual ~EditCommand(); 40 virtual ~EditCommand();
42 41
43 void setParent(CompositeEditCommand*); 42 void setParent(CompositeEditCommand*);
44 43
45 virtual EditAction editingAction() const; 44 virtual EditAction editingAction() const;
46 45
47 const VisibleSelection& startingSelection() const { return m_startingSelecti on; } 46 const VisibleSelection& startingSelection() const { return m_startingSelecti on; }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 87
89 private: 88 private:
90 virtual bool isSimpleEditCommand() const OVERRIDE FINAL { return true; } 89 virtual bool isSimpleEditCommand() const OVERRIDE FINAL { return true; }
91 }; 90 };
92 91
93 DEFINE_TYPE_CASTS(SimpleEditCommand, EditCommand, command, command->isSimpleEdit Command(), command.isSimpleEditCommand()); 92 DEFINE_TYPE_CASTS(SimpleEditCommand, EditCommand, command, command->isSimpleEdit Command(), command.isSimpleEditCommand());
94 93
95 } // namespace blink 94 } // namespace blink
96 95
97 #endif // EditCommand_h 96 #endif // EditCommand_h
OLDNEW
« no previous file with comments | « Source/core/editing/DOMSelection.h ('k') | Source/core/editing/EditingStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698