| OLD | NEW |
| 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 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "ppapi/proxy/proxy_channel.h" | 9 #include "ppapi/proxy/proxy_channel.h" |
| 10 | 10 |
| 11 namespace content { |
| 12 |
| 11 class PepperProxyChannelDelegateImpl | 13 class PepperProxyChannelDelegateImpl |
| 12 : public ppapi::proxy::ProxyChannel::Delegate { | 14 : public ppapi::proxy::ProxyChannel::Delegate { |
| 13 public: | 15 public: |
| 14 virtual ~PepperProxyChannelDelegateImpl(); | 16 virtual ~PepperProxyChannelDelegateImpl(); |
| 15 | 17 |
| 16 // ProxyChannel::Delegate implementation. | 18 // ProxyChannel::Delegate implementation. |
| 17 virtual base::MessageLoopProxy* GetIPCMessageLoop() OVERRIDE; | 19 virtual base::MessageLoopProxy* GetIPCMessageLoop() OVERRIDE; |
| 18 virtual base::WaitableEvent* GetShutdownEvent() OVERRIDE; | 20 virtual base::WaitableEvent* GetShutdownEvent() OVERRIDE; |
| 19 }; | 21 }; |
| 20 | 22 |
| 23 } // namespace content |
| 24 |
| 21 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ | 25 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ |
| OLD | NEW |