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

Side by Side Diff: third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommand.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 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 27
28 #include "bindings/core/v8/ExceptionState.h" 28 #include "bindings/core/v8/ExceptionState.h"
29 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 29 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
30 #include "core/dom/Document.h" 30 #include "core/dom/Document.h"
31 #include "core/dom/Text.h" 31 #include "core/dom/Text.h"
32 #include "core/editing/markers/DocumentMarkerController.h" 32 #include "core/editing/markers/DocumentMarkerController.h"
33 #include "wtf/Assertions.h" 33 #include "wtf/Assertions.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 SplitTextNodeCommand::SplitTextNodeCommand(PassRefPtrWillBeRawPtr<Text> text, in t offset) 37 SplitTextNodeCommand::SplitTextNodeCommand(RawPtr<Text> text, int offset)
38 : SimpleEditCommand(text->document()) 38 : SimpleEditCommand(text->document())
39 , m_text2(text) 39 , m_text2(text)
40 , m_offset(offset) 40 , m_offset(offset)
41 { 41 {
42 // NOTE: Various callers rely on the fact that the original node becomes 42 // NOTE: Various callers rely on the fact that the original node becomes
43 // the second node (i.e. the new node is inserted before the existing one). 43 // the second node (i.e. the new node is inserted before the existing one).
44 // That is not a fundamental dependency (i.e. it could be re-coded), but 44 // That is not a fundamental dependency (i.e. it could be re-coded), but
45 // rather is based on how this code happens to work. 45 // rather is based on how this code happens to work.
46 ASSERT(m_text2); 46 ASSERT(m_text2);
47 ASSERT(m_text2->length() > 0); 47 ASSERT(m_text2->length() > 0);
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 } 103 }
104 104
105 DEFINE_TRACE(SplitTextNodeCommand) 105 DEFINE_TRACE(SplitTextNodeCommand)
106 { 106 {
107 visitor->trace(m_text1); 107 visitor->trace(m_text1);
108 visitor->trace(m_text2); 108 visitor->trace(m_text2);
109 SimpleEditCommand::trace(visitor); 109 SimpleEditCommand::trace(visitor);
110 } 110 }
111 111
112 } // namespace blink 112 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698