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

Side by Side Diff: ppapi/thunk/ppb_flash_drm_thunk.cc

Issue 1820873005: Run ppapi/generators/generator.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « ppapi/thunk/ppb_find_private_thunk.cc ('k') | ppapi/thunk/ppb_flash_font_file_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // From private/ppb_flash_drm.idl modified Mon Apr 7 08:56:43 2014. 5 // From private/ppb_flash_drm.idl modified Wed Jan 27 17:10:16 2016.
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "ppapi/c/pp_completion_callback.h" 9 #include "ppapi/c/pp_completion_callback.h"
10 #include "ppapi/c/pp_errors.h" 10 #include "ppapi/c/pp_errors.h"
11 #include "ppapi/c/private/ppb_flash_drm.h" 11 #include "ppapi/c/private/ppb_flash_drm.h"
12 #include "ppapi/shared_impl/tracked_callback.h" 12 #include "ppapi/shared_impl/tracked_callback.h"
13 #include "ppapi/thunk/enter.h" 13 #include "ppapi/thunk/enter.h"
14 #include "ppapi/thunk/ppapi_thunk_export.h" 14 #include "ppapi/thunk/ppapi_thunk_export.h"
15 #include "ppapi/thunk/ppb_flash_drm_api.h" 15 #include "ppapi/thunk/ppb_flash_drm_api.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 PP_Bool* is_external, 60 PP_Bool* is_external,
61 struct PP_CompletionCallback callback) { 61 struct PP_CompletionCallback callback) {
62 VLOG(4) << "PPB_Flash_DRM::MonitorIsExternal()"; 62 VLOG(4) << "PPB_Flash_DRM::MonitorIsExternal()";
63 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true); 63 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true);
64 if (enter.failed()) 64 if (enter.failed())
65 return enter.retval(); 65 return enter.retval();
66 return enter.SetResult( 66 return enter.SetResult(
67 enter.object()->MonitorIsExternal(is_external, enter.callback())); 67 enter.object()->MonitorIsExternal(is_external, enter.callback()));
68 } 68 }
69 69
70 const PPB_Flash_DRM_1_0 g_ppb_flash_drm_thunk_1_0 = {&Create, 70 const PPB_Flash_DRM_1_0 g_ppb_flash_drm_thunk_1_0 = {
71 &GetDeviceID, 71 &Create, &GetDeviceID, &GetHmonitor, &GetVoucherFile};
72 &GetHmonitor,
73 &GetVoucherFile};
74 72
75 const PPB_Flash_DRM_1_1 g_ppb_flash_drm_thunk_1_1 = {&Create, 73 const PPB_Flash_DRM_1_1 g_ppb_flash_drm_thunk_1_1 = {
76 &GetDeviceID, 74 &Create, &GetDeviceID, &GetHmonitor, &GetVoucherFile, &MonitorIsExternal};
77 &GetHmonitor,
78 &GetVoucherFile,
79 &MonitorIsExternal};
80 75
81 } // namespace 76 } // namespace
82 77
83 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_0* GetPPB_Flash_DRM_1_0_Thunk() { 78 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_0* GetPPB_Flash_DRM_1_0_Thunk() {
84 return &g_ppb_flash_drm_thunk_1_0; 79 return &g_ppb_flash_drm_thunk_1_0;
85 } 80 }
86 81
87 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_1* GetPPB_Flash_DRM_1_1_Thunk() { 82 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_1* GetPPB_Flash_DRM_1_1_Thunk() {
88 return &g_ppb_flash_drm_thunk_1_1; 83 return &g_ppb_flash_drm_thunk_1_1;
89 } 84 }
90 85
91 } // namespace thunk 86 } // namespace thunk
92 } // namespace ppapi 87 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_find_private_thunk.cc ('k') | ppapi/thunk/ppb_flash_font_file_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698