blob: fd7d5d2b6b127bb3685a94f67b7a42475b21989c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (c) 2011 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_PPB_MEMORY_PROXY_H_
#define PPAPI_PPB_MEMORY_PROXY_H_
#include "ppapi/proxy/interface_proxy.h"
struct PPB_Memory_Dev;
namespace ppapi {
namespace proxy {
const PPB_Memory_Dev* GetPPB_Memory_Interface();
} // namespace proxy
} // namespace ppapi
#endif // PPAPI_PPB_MEMORY_PROXY_H_
|