Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: ppapi/cpp/dev/memory_dev.h

Issue 7300010: Add PPB_Memory_Dev. This is the first of a few CLs needed to pull MemAlloc and (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up thunk.h Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/c/dev/ppb_memory_dev.h ('k') | ppapi/cpp/dev/memory_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/memory_dev.h
diff --git a/ppapi/cpp/dev/memory_dev.h b/ppapi/cpp/dev/memory_dev.h
new file mode 100644
index 0000000000000000000000000000000000000000..2695cae0e641d41c6581294a5c491954e5ddfebd
--- /dev/null
+++ b/ppapi/cpp/dev/memory_dev.h
@@ -0,0 +1,36 @@
+// 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_CPP_DEV_MEMORY_DEV_H_
+#define PPAPI_CPP_DEV_MEMORY_DEV_H_
+
+#include "ppapi/c/pp_stdint.h"
+
+/// @file
+/// This file defines APIs related to memory management.
+
+namespace pp {
+
+/// APIs related to memory management, time, and threads.
+class Memory_Dev {
+ public:
+ Memory_Dev() {}
+
+ /// A function that allocates memory.
+ ///
+ /// @param[in] num_bytes A number of bytes to allocate.
+ /// @return A pointer to the memory if successful, NULL If the
+ /// allocation fails.
+ void* MemAlloc(uint32_t num_bytes);
+
+ /// A function that deallocates memory.
+ ///
+ /// @param[in] ptr A pointer to the memory to deallocate. It is safe to
+ /// pass NULL to this function.
+ void MemFree(void* ptr);
+};
+
+} // namespace pp
+
+#endif // PPAPI_CPP_DEV_MEMORY_DEV_H_
« no previous file with comments | « ppapi/c/dev/ppb_memory_dev.h ('k') | ppapi/cpp/dev/memory_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698