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

Side by Side Diff: ppapi/shared_impl/ppb_memory_shared.cc

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/shared_impl/ppb_crypto_shared.cc ('k') | ppapi/shared_impl/ppb_var_shared.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdlib.h> 5 #include <stdlib.h>
6 6
7 #include "ppapi/c/dev/ppb_memory_dev.h" 7 #include "ppapi/c/dev/ppb_memory_dev.h"
8 #include "ppapi/shared_impl/ppapi_shared_export.h" 8 #include "ppapi/shared_impl/ppapi_shared_export.h"
9 9
10 // The memory interface doesn't have a normal C -> C++ thunk since it doesn't 10 // The memory interface doesn't have a normal C -> C++ thunk since it doesn't
(...skipping 16 matching lines...) Expand all
27 const PPB_Memory_Dev ppb_memory = { 27 const PPB_Memory_Dev ppb_memory = {
28 &MemAlloc, 28 &MemAlloc,
29 &MemFree 29 &MemFree
30 }; 30 };
31 31
32 } // namespace 32 } // namespace
33 33
34 namespace thunk { 34 namespace thunk {
35 35
36 // static 36 // static
37 PPAPI_SHARED_EXPORT const PPB_Memory_Dev* GetPPB_Memory_Dev_Thunk() { 37 PPAPI_SHARED_EXPORT const PPB_Memory_Dev_0_1* GetPPB_Memory_Dev_0_1_Thunk() {
38 return &ppb_memory; 38 return &ppb_memory;
39 } 39 }
40 40
41 } // namespace thunk 41 } // namespace thunk
42 42
43 } // namespace ppapi 43 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/shared_impl/ppb_crypto_shared.cc ('k') | ppapi/shared_impl/ppb_var_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698