Chromium Code Reviews| Index: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_mouse_cursor.h |
| diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_mouse_cursor.h b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_mouse_cursor.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..490a8d4dacf881d06dfda948b525016391a0a6ef |
| --- /dev/null |
| +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_mouse_cursor.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
|
dmichael (off chromium)
2012/03/26 17:43:17
nit: 2012
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_MOUSE_CURSOR_H_ |
| +#define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_MOUSE_CURSOR_H_ |
| + |
| +#include "native_client/src/include/nacl_macros.h" |
| +#include "ppapi/c/ppb_mouse_cursor.h" |
| + |
| +namespace ppapi_proxy { |
| + |
| +// Implements the untrusted side of the PPB_MouseCursor interface. |
| +class PluginMouseCursor { |
| + public: |
| + PluginMouseCursor(); |
| + static const PPB_MouseCursor_1_0* GetInterface(); |
| + |
| + private: |
| + NACL_DISALLOW_COPY_AND_ASSIGN(PluginMouseCursor); |
| +}; |
| + |
| +} // namespace ppapi_proxy |
| + |
| +#endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_MOUSE_CURSOR_H_ |
| + |