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

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

Issue 15813017: Fix variable name style violation from r151791 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Text.h
diff --git a/Source/core/dom/Text.h b/Source/core/dom/Text.h
index 44565a62163220936783058312fae1b5aeba273d..136822de754132a7d6fe89054dba2e3bfe1c7fcd 100644
--- a/Source/core/dom/Text.h
+++ b/Source/core/dom/Text.h
@@ -58,8 +58,8 @@ public:
virtual NodeType nodeType() const OVERRIDE;
protected:
- Text(TreeScope* tree_scope, const String& data, ConstructionType type)
- : CharacterData(tree_scope, data, type)
+ Text(TreeScope* treeScope, const String& data, ConstructionType type)
+ : CharacterData(treeScope, data, type)
{
ScriptWrappable::init(this);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698