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

Unified Diff: content/browser/renderer_host/java/java_bridge_dispatcher_host.h

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: content/browser/renderer_host/java/java_bridge_dispatcher_host.h
diff --git a/content/browser/renderer_host/java/java_bridge_dispatcher_host.h b/content/browser/renderer_host/java/java_bridge_dispatcher_host.h
index 94ee632131c5bfcee61a4a92d100651ed72bb642..21e47c0d3b7fafd09e8bba85b38b2963d527e349 100644
--- a/content/browser/renderer_host/java/java_bridge_dispatcher_host.h
+++ b/content/browser/renderer_host/java/java_bridge_dispatcher_host.h
@@ -42,8 +42,8 @@ class JavaBridgeDispatcherHost
// to |object|, which is manipulated on the background thread. This class
// holds a reference to |object| for the time that the proxy object is bound
// to the window object.
- void AddNamedObject(const string16& name, NPObject* object);
- void RemoveNamedObject(const string16& name);
+ void AddNamedObject(const base::string16& name, NPObject* object);
+ void RemoveNamedObject(const base::string16& name);
// Since this object is ref-counted, it might outlive render_view_host_.
void RenderViewDeleted();

Powered by Google App Engine
This is Rietveld 408576698