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

Unified Diff: Source/wtf/text/AtomicString.h

Issue 203073002: Rename |imp| => |impl| in wtf (one use) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/wtf/text/AtomicString.h
diff --git a/Source/wtf/text/AtomicString.h b/Source/wtf/text/AtomicString.h
index ca43859c088c99c7e55db949fc2ecae0cb8ca7b2..f8f1f63d2852495e69ce020dd1b3e2945a70d0f9 100644
--- a/Source/wtf/text/AtomicString.h
+++ b/Source/wtf/text/AtomicString.h
@@ -50,7 +50,7 @@ public:
// Constructing an AtomicString from a String / StringImpl can be expensive if
// the StringImpl is not already atomic.
- explicit AtomicString(StringImpl* imp) : m_string(add(imp)) { }
+ explicit AtomicString(StringImpl* impl) : m_string(add(impl)) { }
explicit AtomicString(const String& s) : m_string(add(s.impl())) { }
AtomicString(StringImpl* baseString, unsigned start, unsigned length) : m_string(add(baseString, start, length)) { }
« 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