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