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

Side by Side Diff: content/browser/renderer_host/java/java_bridge_channel_host.h

Issue 8525016: Move Java Bridge files to new java/ subdirectory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 9 years, 1 month 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 | « no previous file | content/browser/renderer_host/java/java_bridge_channel_host.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BROWSER_RENDERER_HOST_JAVA_BRIDGE_CHANNEL_HOST_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_CHANNEL_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_JAVA_BRIDGE_CHANNEL_HOST_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_CHANNEL_HOST_H_
7 #pragma once 7 #pragma once
8 8
9 #include "content/common/np_channel_base.h" 9 #include "content/common/np_channel_base.h"
10 10
11 class JavaBridgeChannelHost : public NPChannelBase { 11 class JavaBridgeChannelHost : public NPChannelBase {
12 public: 12 public:
13 static JavaBridgeChannelHost* GetJavaBridgeChannelHost( 13 static JavaBridgeChannelHost* GetJavaBridgeChannelHost(
14 int renderer_id, base::MessageLoopProxy*); 14 int renderer_id, base::MessageLoopProxy*);
15 15
16 // NPChannelBase implementation: 16 // NPChannelBase implementation:
(...skipping 10 matching lines...) Expand all
27 friend class base::RefCountedThreadSafe<JavaBridgeChannelHost>; 27 friend class base::RefCountedThreadSafe<JavaBridgeChannelHost>;
28 virtual ~JavaBridgeChannelHost() {} 28 virtual ~JavaBridgeChannelHost() {}
29 29
30 static NPChannelBase* ClassFactory() { 30 static NPChannelBase* ClassFactory() {
31 return new JavaBridgeChannelHost(); 31 return new JavaBridgeChannelHost();
32 } 32 }
33 33
34 DISALLOW_COPY_AND_ASSIGN(JavaBridgeChannelHost); 34 DISALLOW_COPY_AND_ASSIGN(JavaBridgeChannelHost);
35 }; 35 };
36 36
37 #endif // CONTENT_BROWSER_RENDERER_HOST_JAVA_BRIDGE_CHANNEL_HOST_H_ 37 #endif // CONTENT_BROWSER_RENDERER_HOST_JAVA_JAVA_BRIDGE_CHANNEL_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/java/java_bridge_channel_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698