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

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

Issue 340763003: Change [ConstructorCallWith={Document => ExecutionContext}] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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) 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 24 matching lines...) Expand all
35 #include "core/events/ScopedEventQueue.h" 35 #include "core/events/ScopedEventQueue.h"
36 #include "core/rendering/RenderCombineText.h" 36 #include "core/rendering/RenderCombineText.h"
37 #include "core/rendering/RenderText.h" 37 #include "core/rendering/RenderText.h"
38 #include "core/rendering/svg/RenderSVGInlineText.h" 38 #include "core/rendering/svg/RenderSVGInlineText.h"
39 #include "core/svg/SVGForeignObjectElement.h" 39 #include "core/svg/SVGForeignObjectElement.h"
40 #include "wtf/text/CString.h" 40 #include "wtf/text/CString.h"
41 #include "wtf/text/StringBuilder.h" 41 #include "wtf/text/StringBuilder.h"
42 42
43 namespace WebCore { 43 namespace WebCore {
44 44
45 PassRefPtrWillBeRawPtr<Text> Text::create(Document& document, const String& data ) 45 PassRefPtrWillBeRawPtr<Text> Text::create(ExecutionContext* executionContext, co nst String& data)
46 { 46 {
47 return adoptRefWillBeNoop(new Text(document, data, CreateText)); 47 return adoptRefWillBeNoop(new Text(*toDocument(executionContext), data, Crea teText));
48 } 48 }
49 49
50 PassRefPtrWillBeRawPtr<Text> Text::createEditingText(Document& document, const S tring& data) 50 PassRefPtrWillBeRawPtr<Text> Text::createEditingText(ExecutionContext* execution Context, const String& data)
51 { 51 {
52 return adoptRefWillBeNoop(new Text(document, data, CreateEditingText)); 52 return adoptRefWillBeNoop(new Text(*toDocument(executionContext), data, Crea teEditingText));
53 } 53 }
54 54
55 PassRefPtrWillBeRawPtr<Node> Text::mergeNextSiblingNodesIfPossible() 55 PassRefPtrWillBeRawPtr<Node> Text::mergeNextSiblingNodesIfPossible()
56 { 56 {
57 RefPtrWillBeRawPtr<Node> protect(this); 57 RefPtrWillBeRawPtr<Node> protect(this);
58 58
59 // Remove empty text nodes. 59 // Remove empty text nodes.
60 if (!length()) { 60 if (!length()) {
61 // Care must be taken to get the next node before removing the current n ode. 61 // Care must be taken to get the next node before removing the current n ode.
62 RefPtrWillBeRawPtr<Node> nextNode(NodeTraversal::nextPostOrder(*this)); 62 RefPtrWillBeRawPtr<Node> nextNode(NodeTraversal::nextPostOrder(*this));
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 result.appendLiteral("; "); 368 result.appendLiteral("; ");
369 result.appendLiteral("value="); 369 result.appendLiteral("value=");
370 result.append(s); 370 result.append(s);
371 } 371 }
372 372
373 strncpy(buffer, result.toString().utf8().data(), length - 1); 373 strncpy(buffer, result.toString().utf8().data(), length - 1);
374 } 374 }
375 #endif 375 #endif
376 376
377 } // namespace WebCore 377 } // namespace WebCore
OLDNEW
« Source/core/dom/Range.h ('K') | « Source/core/dom/Text.h ('k') | Source/core/dom/Text.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698