diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 01:37:11 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 01:37:11 +0000 |
commit | 96191d56d125050904d21a4a7e5585ad1bbaee05 (patch) | |
tree | 2104e40cb9dbe1d6230de951f0d8bc5573029b63 /content/public/renderer/render_thread.h | |
parent | ec7cc4b04aec7d1c5bc9ee6f396f51837da4ac6c (diff) | |
download | chromium_src-96191d56d125050904d21a4a7e5585ad1bbaee05.zip chromium_src-96191d56d125050904d21a4a7e5585ad1bbaee05.tar.gz chromium_src-96191d56d125050904d21a4a7e5585ad1bbaee05.tar.bz2 |
Add GetIOMessageLoopProxy method to RenderThread interface.
This is needed to set up a PPAPI HostDispatcher in Chrome code, so we can
work on the NaCl IPC proxy outside of src/content.
BUG=116317
TEST=compiles
Review URL: https://chromiumcodereview.appspot.com/10407009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137604 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/renderer/render_thread.h')
-rw-r--r-- | content/public/renderer/render_thread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/public/renderer/render_thread.h b/content/public/renderer/render_thread.h index 83cb664..81db195 100644 --- a/content/public/renderer/render_thread.h +++ b/content/public/renderer/render_thread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -43,6 +43,7 @@ class CONTENT_EXPORT RenderThread : public IPC::Message::Sender { virtual IPC::SyncChannel* GetChannel() = 0; virtual std::string GetLocale() = 0; virtual IPC::SyncMessageFilter* GetSyncMessageFilter() = 0; + virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() = 0; // Called to add or remove a listener for a particular message routing ID. // These methods normally get delegated to a MessageRouter. |