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

Unified Diff: ppapi/cpp/core.h

Issue 6711047: Fix up some types in the API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: static_cast and header order Created 9 years, 9 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/private/ppb_flash_net_connector.h ('k') | ppapi/cpp/url_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/core.h
diff --git a/ppapi/cpp/core.h b/ppapi/cpp/core.h
index 50c89d5af0d4ad3092638be27d859517599e5dfd..7f0fefc0f032264be7c7a226af4f3e807d395033 100644
--- a/ppapi/cpp/core.h
+++ b/ppapi/cpp/core.h
@@ -27,7 +27,7 @@ class Core {
interface_->ReleaseResource(resource);
}
- void* MemAlloc(size_t num_bytes) {
+ void* MemAlloc(uint32_t num_bytes) {
return interface_->MemAlloc(num_bytes);
}
void MemFree(void* ptr) {
« no previous file with comments | « ppapi/c/private/ppb_flash_net_connector.h ('k') | ppapi/cpp/url_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698