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

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

Issue 238923007: PPAPI: Format ppapi/thunk using clang-format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 1 month 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/thunk/ppb_find_private_thunk.cc ('k') | ppapi/thunk/ppb_fullscreen_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 Tue Dec 3 15:22:00 2013. 5 // From private/ppb_flash_drm.idl modified Mon Apr 7 08:56:43 2014.
6 6
7 #include "ppapi/c/pp_completion_callback.h" 7 #include "ppapi/c/pp_completion_callback.h"
8 #include "ppapi/c/pp_errors.h" 8 #include "ppapi/c/pp_errors.h"
9 #include "ppapi/c/private/ppb_flash_drm.h" 9 #include "ppapi/c/private/ppb_flash_drm.h"
10 #include "ppapi/shared_impl/tracked_callback.h" 10 #include "ppapi/shared_impl/tracked_callback.h"
11 #include "ppapi/thunk/enter.h" 11 #include "ppapi/thunk/enter.h"
12 #include "ppapi/thunk/ppapi_thunk_export.h" 12 #include "ppapi/thunk/ppapi_thunk_export.h"
13 #include "ppapi/thunk/ppb_flash_drm_api.h" 13 #include "ppapi/thunk/ppb_flash_drm_api.h"
14 14
15 namespace ppapi { 15 namespace ppapi {
(...skipping 27 matching lines...) Expand all
43 return enter.object()->GetHmonitor(hmonitor); 43 return enter.object()->GetHmonitor(hmonitor);
44 } 44 }
45 45
46 int32_t GetVoucherFile(PP_Resource drm, 46 int32_t GetVoucherFile(PP_Resource drm,
47 PP_Resource* file_ref, 47 PP_Resource* file_ref,
48 struct PP_CompletionCallback callback) { 48 struct PP_CompletionCallback callback) {
49 VLOG(4) << "PPB_Flash_DRM::GetVoucherFile()"; 49 VLOG(4) << "PPB_Flash_DRM::GetVoucherFile()";
50 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true); 50 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true);
51 if (enter.failed()) 51 if (enter.failed())
52 return enter.retval(); 52 return enter.retval();
53 return enter.SetResult(enter.object()->GetVoucherFile(file_ref, 53 return enter.SetResult(
54 enter.callback())); 54 enter.object()->GetVoucherFile(file_ref, enter.callback()));
55 } 55 }
56 56
57 int32_t MonitorIsExternal(PP_Resource drm, 57 int32_t MonitorIsExternal(PP_Resource drm,
58 PP_Bool* is_external, 58 PP_Bool* is_external,
59 struct PP_CompletionCallback callback) { 59 struct PP_CompletionCallback callback) {
60 VLOG(4) << "PPB_Flash_DRM::MonitorIsExternal()"; 60 VLOG(4) << "PPB_Flash_DRM::MonitorIsExternal()";
61 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true); 61 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true);
62 if (enter.failed()) 62 if (enter.failed())
63 return enter.retval(); 63 return enter.retval();
64 return enter.SetResult(enter.object()->MonitorIsExternal(is_external, 64 return enter.SetResult(
65 enter.callback())); 65 enter.object()->MonitorIsExternal(is_external, enter.callback()));
66 } 66 }
67 67
68 const PPB_Flash_DRM_1_0 g_ppb_flash_drm_thunk_1_0 = { 68 const PPB_Flash_DRM_1_0 g_ppb_flash_drm_thunk_1_0 = {&Create,
69 &Create, 69 &GetDeviceID,
70 &GetDeviceID, 70 &GetHmonitor,
71 &GetHmonitor, 71 &GetVoucherFile};
72 &GetVoucherFile
73 };
74 72
75 const PPB_Flash_DRM_1_1 g_ppb_flash_drm_thunk_1_1 = { 73 const PPB_Flash_DRM_1_1 g_ppb_flash_drm_thunk_1_1 = {&Create,
76 &Create, 74 &GetDeviceID,
77 &GetDeviceID, 75 &GetHmonitor,
78 &GetHmonitor, 76 &GetVoucherFile,
79 &GetVoucherFile, 77 &MonitorIsExternal};
80 &MonitorIsExternal
81 };
82 78
83 } // namespace 79 } // namespace
84 80
85 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_0* GetPPB_Flash_DRM_1_0_Thunk() { 81 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_0* GetPPB_Flash_DRM_1_0_Thunk() {
86 return &g_ppb_flash_drm_thunk_1_0; 82 return &g_ppb_flash_drm_thunk_1_0;
87 } 83 }
88 84
89 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_1* GetPPB_Flash_DRM_1_1_Thunk() { 85 PPAPI_THUNK_EXPORT const PPB_Flash_DRM_1_1* GetPPB_Flash_DRM_1_1_Thunk() {
90 return &g_ppb_flash_drm_thunk_1_1; 86 return &g_ppb_flash_drm_thunk_1_1;
91 } 87 }
92 88
93 } // namespace thunk 89 } // namespace thunk
94 } // namespace ppapi 90 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_find_private_thunk.cc ('k') | ppapi/thunk/ppb_fullscreen_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698