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

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

Issue 11235068: Move the remaning files in content\common to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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: content/browser/renderer_host/java/java_bridge_dispatcher_host.h
===================================================================
--- content/browser/renderer_host/java/java_bridge_dispatcher_host.h (revision 163632)
+++ content/browser/renderer_host/java/java_bridge_dispatcher_host.h (working copy)
@@ -9,13 +9,13 @@
#include "base/string16.h"
#include "content/public/browser/render_view_host_observer.h"
-class NPChannelBase;
class RouteIDGenerator;
struct NPObject;
-struct NPVariant_Param;
namespace content {
+class NPChannelBase;
class RenderViewHost;
+struct NPVariant_Param;
}
// This class handles injecting Java objects into a single RenderView. The Java
@@ -58,10 +58,10 @@
void OnGetChannelHandle(IPC::Message* reply_msg);
void GetChannelHandle(IPC::Message* reply_msg);
- void CreateNPVariantParam(NPObject* object, NPVariant_Param* param);
+ void CreateNPVariantParam(NPObject* object, content::NPVariant_Param* param);
void CreateObjectStub(NPObject* object, int route_id);
- scoped_refptr<NPChannelBase> channel_;
+ scoped_refptr<content::NPChannelBase> channel_;
bool is_renderer_initialized_;
DISALLOW_COPY_AND_ASSIGN(JavaBridgeDispatcherHost);

Powered by Google App Engine
This is Rietveld 408576698