[email protected] | 31799bf | 2012-02-26 20:18:41 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ |
| 6 | #define CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ |
| 7 | |
| 8 | #include "base/compiler_specific.h" |
| 9 | #include "ppapi/proxy/proxy_channel.h" |
| 10 | |
[email protected] | ca00e916 | 2012-04-03 05:35:36 | [diff] [blame] | 11 | namespace content { |
| 12 | |
[email protected] | 31799bf | 2012-02-26 20:18:41 | [diff] [blame] | 13 | class PepperProxyChannelDelegateImpl |
| 14 | : public ppapi::proxy::ProxyChannel::Delegate { |
| 15 | public: |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 16 | ~PepperProxyChannelDelegateImpl() override; |
[email protected] | 31799bf | 2012-02-26 20:18:41 | [diff] [blame] | 17 | |
| 18 | // ProxyChannel::Delegate implementation. |
skyostil | 12262cf | 2015-05-21 14:49:31 | [diff] [blame] | 19 | base::SingleThreadTaskRunner* GetIPCTaskRunner() override; |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [
|