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

Side by Side Diff: content/renderer/java/java_bridge_channel.h

Issue 15047014: Move child-common classes to content/common_child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/DEPS ('k') | content/renderer/java/java_bridge_channel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_JAVA_JAVA_BRIDGE_CHANNEL_H_ 5 #ifndef CONTENT_RENDERER_JAVA_JAVA_BRIDGE_CHANNEL_H_
6 #define CONTENT_RENDERER_JAVA_JAVA_BRIDGE_CHANNEL_H_ 6 #define CONTENT_RENDERER_JAVA_JAVA_BRIDGE_CHANNEL_H_
7 7
8 #include "content/common/np_channel_base.h" 8 #include "content/common_child/np_channel_base.h"
9 #include "ipc/ipc_channel_handle.h" 9 #include "ipc/ipc_channel_handle.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 class JavaBridgeChannel : public content::NPChannelBase { 13 class JavaBridgeChannel : public content::NPChannelBase {
14 public: 14 public:
15 // The return value may be null. 15 // The return value may be null.
16 static JavaBridgeChannel* GetJavaBridgeChannel( 16 static JavaBridgeChannel* GetJavaBridgeChannel(
17 const IPC::ChannelHandle& channel_handle, 17 const IPC::ChannelHandle& channel_handle,
18 base::MessageLoopProxy* ipc_message_loop); 18 base::MessageLoopProxy* ipc_message_loop);
(...skipping 10 matching lines...) Expand all
29 virtual ~JavaBridgeChannel(); 29 virtual ~JavaBridgeChannel();
30 30
31 static NPChannelBase* ClassFactory() { return new JavaBridgeChannel(); } 31 static NPChannelBase* ClassFactory() { return new JavaBridgeChannel(); }
32 32
33 DISALLOW_COPY_AND_ASSIGN(JavaBridgeChannel); 33 DISALLOW_COPY_AND_ASSIGN(JavaBridgeChannel);
34 }; 34 };
35 35
36 } // namespace content 36 } // namespace content
37 37
38 #endif // CONTENT_RENDERER_JAVA_JAVA_BRIDGE_CHANNEL_H_ 38 #endif // CONTENT_RENDERER_JAVA_JAVA_BRIDGE_CHANNEL_H_
OLDNEW
« no previous file with comments | « content/renderer/DEPS ('k') | content/renderer/java/java_bridge_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698