OLD | NEW |
| (Empty) |
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 PPAPI_PROXY_PPB_MESSAGE_LOOP_PROXY_H_ | |
6 #define PPAPI_PROXY_PPB_MESSAGE_LOOP_PROXY_H_ | |
7 | |
8 #include "base/basictypes.h" | |
9 #include "ppapi/proxy/interface_proxy.h" | |
10 | |
11 struct PPB_MessageLoop_Dev_0_1; | |
12 | |
13 namespace ppapi { | |
14 namespace proxy { | |
15 | |
16 class PPB_MessageLoop_Proxy : public InterfaceProxy { | |
17 public: | |
18 PPB_MessageLoop_Proxy(Dispatcher* dispatcher); | |
19 virtual ~PPB_MessageLoop_Proxy(); | |
20 | |
21 static const PPB_MessageLoop_Dev_0_1* GetInterface(); | |
22 | |
23 private: | |
24 DISALLOW_COPY_AND_ASSIGN(PPB_MessageLoop_Proxy); | |
25 }; | |
26 | |
27 } // namespace proxy | |
28 } // namespace ppapi | |
29 | |
30 #endif // PPAPI_PROXY_PPB_MESSAGE_LOOP_PROXY_H_ | |
OLD | NEW |