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

Side by Side Diff: content/browser/renderer_host/java/java_bridge_dispatcher_host.cc

Issue 16328003: Move a bunch of child-only code from content/common to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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
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 #include "content/browser/renderer_host/java/java_bridge_dispatcher_host.h" 5 #include "content/browser/renderer_host/java/java_bridge_dispatcher_host.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "base/threading/thread.h" 9 #include "base/threading/thread.h"
10 #include "content/browser/renderer_host/java/java_bridge_channel_host.h" 10 #include "content/browser/renderer_host/java/java_bridge_channel_host.h"
11 #include "content/browser/renderer_host/render_view_host_impl.h" 11 #include "content/browser/renderer_host/render_view_host_impl.h"
12 #include "content/child/child_process.h"
12 #include "content/child/npobject_stub.h" 13 #include "content/child/npobject_stub.h"
13 #include "content/child/npobject_util.h" // For CreateNPVariantParam() 14 #include "content/child/npobject_util.h" // For CreateNPVariantParam()
14 #include "content/common/child_process.h"
15 #include "content/common/java_bridge_messages.h" 15 #include "content/common/java_bridge_messages.h"
16 #include "content/public/browser/browser_thread.h" 16 #include "content/public/browser/browser_thread.h"
17 #include "content/public/browser/render_process_host.h" 17 #include "content/public/browser/render_process_host.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
19 19
20 namespace content { 20 namespace content {
21 21
22 namespace { 22 namespace {
23 class JavaBridgeThread : public base::Thread { 23 class JavaBridgeThread : public base::Thread {
24 public: 24 public:
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 // functionality. The page URL is also not required. 158 // functionality. The page URL is also not required.
159 stubs_.push_back( 159 stubs_.push_back(
160 (new NPObjectStub(object, channel_, route_id, 0, GURL()))->AsWeakPtr()); 160 (new NPObjectStub(object, channel_, route_id, 0, GURL()))->AsWeakPtr());
161 161
162 // The NPObjectStub takes a reference to the NPObject. Release the ref added 162 // The NPObjectStub takes a reference to the NPObject. Release the ref added
163 // in CreateNPVariantParam(). 163 // in CreateNPVariantParam().
164 WebKit::WebBindings::releaseObject(object); 164 WebKit::WebBindings::releaseObject(object);
165 } 165 }
166 166
167 } // namespace content 167 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/image_transport_factory.cc ('k') | content/browser/renderer_host/render_sandbox_host_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698