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

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

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make test wrapper class finalized Created 6 years, 6 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 16 matching lines...) Expand all
27 #define InsertParagraphSeparatorCommand_h 27 #define InsertParagraphSeparatorCommand_h
28 28
29 #include "core/editing/CompositeEditCommand.h" 29 #include "core/editing/CompositeEditCommand.h"
30 30
31 namespace WebCore { 31 namespace WebCore {
32 32
33 class EditingStyle; 33 class EditingStyle;
34 34
35 class InsertParagraphSeparatorCommand FINAL : public CompositeEditCommand { 35 class InsertParagraphSeparatorCommand FINAL : public CompositeEditCommand {
36 public: 36 public:
37 static PassRefPtr<InsertParagraphSeparatorCommand> create(Document& document , bool useDefaultParagraphElement = false, bool pasteBlockqutoeIntoUnquotedArea = false) 37 static PassRefPtrWillBeRawPtr<InsertParagraphSeparatorCommand> create(Docume nt& document, bool useDefaultParagraphElement = false, bool pasteBlockqutoeIntoU nquotedArea = false)
38 { 38 {
39 return adoptRef(new InsertParagraphSeparatorCommand(document, useDefault ParagraphElement, pasteBlockqutoeIntoUnquotedArea)); 39 return adoptRefWillBeNoop(new InsertParagraphSeparatorCommand(document, useDefaultParagraphElement, pasteBlockqutoeIntoUnquotedArea));
40 } 40 }
41 41
42 virtual void trace(Visitor*) OVERRIDE;
43
42 private: 44 private:
43 InsertParagraphSeparatorCommand(Document&, bool useDefaultParagraphElement, bool pasteBlockqutoeIntoUnquotedArea); 45 InsertParagraphSeparatorCommand(Document&, bool useDefaultParagraphElement, bool pasteBlockqutoeIntoUnquotedArea);
44 46
45 virtual void doApply() OVERRIDE; 47 virtual void doApply() OVERRIDE;
46 48
47 void calculateStyleBeforeInsertion(const Position&); 49 void calculateStyleBeforeInsertion(const Position&);
48 void applyStyleAfterInsertion(Node* originalEnclosingBlock); 50 void applyStyleAfterInsertion(Node* originalEnclosingBlock);
49 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, Vector<RefPtr<Element> >& ancestors); 51 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors);
50 PassRefPtr<Element> cloneHierarchyUnderNewBlock(const Vector<RefPtr<Element> >& ancestors, PassRefPtr<Element> blockToInsert); 52 PassRefPtrWillBeRawPtr<Element> cloneHierarchyUnderNewBlock(const WillBeHeap Vector<RefPtrWillBeMember<Element> >& ancestors, PassRefPtrWillBeRawPtr<Element> blockToInsert);
51 53
52 bool shouldUseDefaultParagraphElement(Node*) const; 54 bool shouldUseDefaultParagraphElement(Node*) const;
53 55
54 virtual bool preservesTypingStyle() const OVERRIDE; 56 virtual bool preservesTypingStyle() const OVERRIDE;
55 57
56 RefPtr<EditingStyle> m_style; 58 RefPtrWillBeMember<EditingStyle> m_style;
57 59
58 bool m_mustUseDefaultParagraphElement; 60 bool m_mustUseDefaultParagraphElement;
59 bool m_pasteBlockqutoeIntoUnquotedArea; 61 bool m_pasteBlockqutoeIntoUnquotedArea;
60 }; 62 };
61 63
62 } 64 }
63 65
64 #endif 66 #endif
OLDNEW
« no previous file with comments | « Source/core/editing/InsertNodeBeforeCommand.cpp ('k') | Source/core/editing/InsertParagraphSeparatorCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698