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

Unified Diff: Source/core/dom/Text.h

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 side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/Text.h
diff --git a/Source/core/dom/Text.h b/Source/core/dom/Text.h
index fc387d2d75c3d05edfbf6f1d16042e51215cc445..6a3976aca1e99c02994289850eeff41ab8ff88b9 100644
--- a/Source/core/dom/Text.h
+++ b/Source/core/dom/Text.h
@@ -35,8 +35,8 @@ class Text : public CharacterData {
public:
static const unsigned defaultLengthLimit = 1 << 16;
- static PassRefPtrWillBeRawPtr<Text> create(Document&, const String&);
- static PassRefPtrWillBeRawPtr<Text> createEditingText(Document&, const String&);
+ static PassRefPtrWillBeRawPtr<Text> create(ExecutionContext*, const String&);
+ static PassRefPtrWillBeRawPtr<Text> createEditingText(ExecutionContext*, const String&);
// mergeNextSiblingNodesIfPossible() merges next sibling nodes if possible
// then returns a node not merged.

Powered by Google App Engine
This is Rietveld 408576698