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

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

Issue 1218293014: Fix virtual/override/final usage in Source/core/editing/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | Annotate | Revision Log
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 26 matching lines...) Expand all
37 static PassRefPtrWillBeRawPtr<InsertParagraphSeparatorCommand> create(Docume nt& document, bool useDefaultParagraphElement = false, bool pasteBlockquoteIntoU nquotedArea = false) 37 static PassRefPtrWillBeRawPtr<InsertParagraphSeparatorCommand> create(Docume nt& document, bool useDefaultParagraphElement = false, bool pasteBlockquoteIntoU nquotedArea = false)
38 { 38 {
39 return adoptRefWillBeNoop(new InsertParagraphSeparatorCommand(document, useDefaultParagraphElement, pasteBlockquoteIntoUnquotedArea)); 39 return adoptRefWillBeNoop(new InsertParagraphSeparatorCommand(document, useDefaultParagraphElement, pasteBlockquoteIntoUnquotedArea));
40 } 40 }
41 41
42 DECLARE_VIRTUAL_TRACE(); 42 DECLARE_VIRTUAL_TRACE();
43 43
44 private: 44 private:
45 InsertParagraphSeparatorCommand(Document&, bool useDefaultParagraphElement, bool pasteBlockquoteIntoUnquotedArea); 45 InsertParagraphSeparatorCommand(Document&, bool useDefaultParagraphElement, bool pasteBlockquoteIntoUnquotedArea);
46 46
47 virtual void doApply() override; 47 void doApply() override;
48 48
49 void calculateStyleBeforeInsertion(const Position&); 49 void calculateStyleBeforeInsertion(const Position&);
50 void applyStyleAfterInsertion(Element* originalEnclosingBlock); 50 void applyStyleAfterInsertion(Element* originalEnclosingBlock);
51 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, WillBeHeapVector<RefPtrWillBeMember<Element>>& ancestors); 51 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, WillBeHeapVector<RefPtrWillBeMember<Element>>& ancestors);
52 PassRefPtrWillBeRawPtr<Element> cloneHierarchyUnderNewBlock(const WillBeHeap Vector<RefPtrWillBeMember<Element>>& ancestors, PassRefPtrWillBeRawPtr<Element> blockToInsert); 52 PassRefPtrWillBeRawPtr<Element> cloneHierarchyUnderNewBlock(const WillBeHeap Vector<RefPtrWillBeMember<Element>>& ancestors, PassRefPtrWillBeRawPtr<Element> blockToInsert);
53 53
54 bool shouldUseDefaultParagraphElement(Element*) const; 54 bool shouldUseDefaultParagraphElement(Element*) const;
55 55
56 virtual bool preservesTypingStyle() const override; 56 bool preservesTypingStyle() const override;
57 57
58 RefPtrWillBeMember<EditingStyle> m_style; 58 RefPtrWillBeMember<EditingStyle> m_style;
59 59
60 bool m_mustUseDefaultParagraphElement; 60 bool m_mustUseDefaultParagraphElement;
61 bool m_pasteBlockquoteIntoUnquotedArea; 61 bool m_pasteBlockquoteIntoUnquotedArea;
62 }; 62 };
63 63
64 } 64 }
65 65
66 #endif 66 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698