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

Unified Diff: sky/engine/wtf/text/AtomicString.h

Issue 922893002: Merge the Sky Engine changes from the SkyDart branch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « sky/engine/web/tests/RunAllTests.cpp ('k') | sky/examples/dart.sky » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/wtf/text/AtomicString.h
diff --git a/sky/engine/wtf/text/AtomicString.h b/sky/engine/wtf/text/AtomicString.h
index 4da69513f94762ab1b45805a2422ea7ec1618f15..b858924fb6d1057764f911b1d2a7151008315e24 100644
--- a/sky/engine/wtf/text/AtomicString.h
+++ b/sky/engine/wtf/text/AtomicString.h
@@ -51,7 +51,7 @@ public:
// Constructing an AtomicString from a String / StringImpl can be expensive if
// the StringImpl is not already atomic.
explicit AtomicString(StringImpl* impl) : m_string(add(impl)) { }
- explicit AtomicString(const String& s) : m_string(add(s.impl())) { }
+ 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 | « sky/engine/web/tests/RunAllTests.cpp ('k') | sky/examples/dart.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698