Chromium Code Reviews

Side by Side Diff: ppapi/thunk/ppb_find_thunk.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.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « ppapi/thunk/ppb_file_system_thunk.cc ('k') | ppapi/thunk/ppb_flash_clipboard_thunk.cc » ('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 "ppapi/c/dev/ppb_find_dev.h" 5 #include "ppapi/c/dev/ppb_find_dev.h"
6 #include "ppapi/thunk/thunk.h" 6 #include "ppapi/thunk/thunk.h"
7 #include "ppapi/thunk/enter.h" 7 #include "ppapi/thunk/enter.h"
8 8
9 namespace ppapi { 9 namespace ppapi {
10 namespace thunk { 10 namespace thunk {
(...skipping 14 matching lines...)
25 enter.functions()->SelectedFindResultChanged(instance, index); 25 enter.functions()->SelectedFindResultChanged(instance, index);
26 } 26 }
27 27
28 const PPB_Find_Dev g_ppb_find_thunk = { 28 const PPB_Find_Dev g_ppb_find_thunk = {
29 &NumberOfFindResultsChanged, 29 &NumberOfFindResultsChanged,
30 &SelectedFindResultChanged 30 &SelectedFindResultChanged
31 }; 31 };
32 32
33 } // namespace 33 } // namespace
34 34
35 const PPB_Find_Dev* GetPPB_Find_Dev_Thunk() { 35 const PPB_Find_Dev_0_3* GetPPB_Find_Dev_0_3_Thunk() {
36 return &g_ppb_find_thunk; 36 return &g_ppb_find_thunk;
37 } 37 }
38 38
39 } // namespace thunk 39 } // namespace thunk
40 } // namespace ppapi 40 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_file_system_thunk.cc ('k') | ppapi/thunk/ppb_flash_clipboard_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine