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

Unified Diff: webkit/compositor_bindings/web_layer_impl.cc

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: webkit/compositor_bindings/web_layer_impl.cc
diff --git a/webkit/compositor_bindings/web_layer_impl.cc b/webkit/compositor_bindings/web_layer_impl.cc
index e7292e2810a29aae93c7a59ed21cdac357ad476e..c540688240d0ba222f2a6e2816245b0c88c3a621 100644
--- a/webkit/compositor_bindings/web_layer_impl.cc
+++ b/webkit/compositor_bindings/web_layer_impl.cc
@@ -165,7 +165,8 @@ void WebLayerImpl::setFilter(SkImageFilter* filter) {
}
void WebLayerImpl::setDebugName(WebKit::WebString name) {
- layer_->SetDebugName(UTF16ToASCII(string16(name.data(), name.length())));
+ layer_->SetDebugName(
+ UTF16ToASCII(base::string16(name.data(), name.length())));
}
void WebLayerImpl::setAnimationDelegate(

Powered by Google App Engine
This is Rietveld 408576698