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

Unified Diff: content/browser/renderer_host/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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/java_bridge_channel_host.h
diff --git a/content/browser/renderer_host/java_bridge_channel_host.h b/content/browser/renderer_host/java_bridge_channel_host.h
deleted file mode 100644
index e00054789485263a167a0a77073c7a73ff202026..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/java_bridge_channel_host.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_BROWSER_RENDERER_HOST_JAVA_BRIDGE_CHANNEL_HOST_H_
-#define CONTENT_BROWSER_RENDERER_HOST_JAVA_BRIDGE_CHANNEL_HOST_H_
-#pragma once
-
-#include "content/common/np_channel_base.h"
-
-class JavaBridgeChannelHost : public NPChannelBase {
- public:
- static JavaBridgeChannelHost* GetJavaBridgeChannelHost(
- int renderer_id, base::MessageLoopProxy*);
-
- // NPChannelBase implementation:
- virtual int GenerateRouteID() OVERRIDE;
-
- // NPChannelBase override:
- virtual bool Init(base::MessageLoopProxy* ipc_message_loop,
- bool create_pipe_now,
- base::WaitableEvent* shutdown_event) OVERRIDE;
- virtual bool Send(IPC::Message* msg) OVERRIDE;
-
- private:
- JavaBridgeChannelHost() {}
- friend class base::RefCountedThreadSafe<JavaBridgeChannelHost>;
- virtual ~JavaBridgeChannelHost() {}
-
- static NPChannelBase* ClassFactory() {
- return new JavaBridgeChannelHost();
- }
-
- DISALLOW_COPY_AND_ASSIGN(JavaBridgeChannelHost);
-};
-
-#endif // CONTENT_BROWSER_RENDERER_HOST_JAVA_BRIDGE_CHANNEL_HOST_H_

Powered by Google App Engine
This is Rietveld 408576698