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

Side by Side Diff: Source/core/editing/ReplaceSelectionCommand.cpp

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
« no previous file with comments | « Source/core/editing/RenderedPosition.cpp ('k') | Source/core/editing/SimplifyMarkupCommand.cpp » ('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 * Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved.
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/events/BeforeTextInsertedEvent.h" 50 #include "core/events/BeforeTextInsertedEvent.h"
51 #include "core/frame/LocalFrame.h" 51 #include "core/frame/LocalFrame.h"
52 #include "core/frame/UseCounter.h" 52 #include "core/frame/UseCounter.h"
53 #include "core/html/HTMLBRElement.h" 53 #include "core/html/HTMLBRElement.h"
54 #include "core/html/HTMLElement.h" 54 #include "core/html/HTMLElement.h"
55 #include "core/html/HTMLInputElement.h" 55 #include "core/html/HTMLInputElement.h"
56 #include "core/html/HTMLLIElement.h" 56 #include "core/html/HTMLLIElement.h"
57 #include "core/html/HTMLQuoteElement.h" 57 #include "core/html/HTMLQuoteElement.h"
58 #include "core/html/HTMLSelectElement.h" 58 #include "core/html/HTMLSelectElement.h"
59 #include "core/html/HTMLSpanElement.h" 59 #include "core/html/HTMLSpanElement.h"
60 #include "core/rendering/RenderObject.h" 60 #include "core/layout/LayoutObject.h"
61 #include "core/rendering/RenderText.h" 61 #include "core/rendering/RenderText.h"
62 #include "wtf/StdLibExtras.h" 62 #include "wtf/StdLibExtras.h"
63 #include "wtf/Vector.h" 63 #include "wtf/Vector.h"
64 64
65 namespace blink { 65 namespace blink {
66 66
67 using namespace HTMLNames; 67 using namespace HTMLNames;
68 68
69 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment }; 69 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment };
70 70
(...skipping 1471 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 void ReplaceSelectionCommand::trace(Visitor* visitor) 1542 void ReplaceSelectionCommand::trace(Visitor* visitor)
1543 { 1543 {
1544 visitor->trace(m_startOfInsertedContent); 1544 visitor->trace(m_startOfInsertedContent);
1545 visitor->trace(m_endOfInsertedContent); 1545 visitor->trace(m_endOfInsertedContent);
1546 visitor->trace(m_insertionStyle); 1546 visitor->trace(m_insertionStyle);
1547 visitor->trace(m_documentFragment); 1547 visitor->trace(m_documentFragment);
1548 CompositeEditCommand::trace(visitor); 1548 CompositeEditCommand::trace(visitor);
1549 } 1549 }
1550 1550
1551 } // namespace blink 1551 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/editing/RenderedPosition.cpp ('k') | Source/core/editing/SimplifyMarkupCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698