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

Side by Side Diff: Source/core/dom/Text.cpp

Issue 106483002: Remove WTF::textAtom and WTF::commentAtom (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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/dom/Comment.cpp ('k') | Source/wtf/text/AtomicString.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 parent->removeChild(this, IGNORE_EXCEPTION); 219 parent->removeChild(this, IGNORE_EXCEPTION);
220 return 0; 220 return 0;
221 } 221 }
222 222
223 setData(newText); 223 setData(newText);
224 return protectedThis.release(); 224 return protectedThis.release();
225 } 225 }
226 226
227 String Text::nodeName() const 227 String Text::nodeName() const
228 { 228 {
229 return textAtom.string(); 229 return "#text";
230 } 230 }
231 231
232 Node::NodeType Text::nodeType() const 232 Node::NodeType Text::nodeType() const
233 { 233 {
234 return TEXT_NODE; 234 return TEXT_NODE;
235 } 235 }
236 236
237 PassRefPtr<Node> Text::cloneNode(bool /*deep*/) 237 PassRefPtr<Node> Text::cloneNode(bool /*deep*/)
238 { 238 {
239 return cloneWithData(data()); 239 return cloneWithData(data());
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 result.appendLiteral("; "); 373 result.appendLiteral("; ");
374 result.appendLiteral("value="); 374 result.appendLiteral("value=");
375 result.append(s); 375 result.append(s);
376 } 376 }
377 377
378 strncpy(buffer, result.toString().utf8().data(), length - 1); 378 strncpy(buffer, result.toString().utf8().data(), length - 1);
379 } 379 }
380 #endif 380 #endif
381 381
382 } // namespace WebCore 382 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/Comment.cpp ('k') | Source/wtf/text/AtomicString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698