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

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

Issue 238923007: PPAPI: Format ppapi/thunk using clang-format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use Popen instead, force carriage returns in thunks Created 6 years, 8 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
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_device_id.idl modified Thu Dec 20 13:10:26 2012. 5 // From private/ppb_flash_device_id.idl modified Thu Dec 20 13:10:26 2012.
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_device_id.h" 9 #include "ppapi/c/private/ppb_flash_device_id.h"
10 #include "ppapi/shared_impl/tracked_callback.h" 10 #include "ppapi/shared_impl/tracked_callback.h"
(...skipping 19 matching lines...) Expand all
30 int32_t GetDeviceID(PP_Resource device_id, 30 int32_t GetDeviceID(PP_Resource device_id,
31 struct PP_Var* id, 31 struct PP_Var* id,
32 struct PP_CompletionCallback callback) { 32 struct PP_CompletionCallback callback) {
33 VLOG(4) << "PPB_Flash_DeviceID::GetDeviceID()"; 33 VLOG(4) << "PPB_Flash_DeviceID::GetDeviceID()";
34 EnterResource<PPB_Flash_DRM_API> enter(device_id, callback, true); 34 EnterResource<PPB_Flash_DRM_API> enter(device_id, callback, true);
35 if (enter.failed()) 35 if (enter.failed())
36 return enter.retval(); 36 return enter.retval();
37 return enter.SetResult(enter.object()->GetDeviceID(id, enter.callback())); 37 return enter.SetResult(enter.object()->GetDeviceID(id, enter.callback()));
38 } 38 }
39 39
40 const PPB_Flash_DeviceID_1_0 g_ppb_flash_deviceid_thunk_1_0 = { 40 const PPB_Flash_DeviceID_1_0 g_ppb_flash_deviceid_thunk_1_0 = {&Create,
41 &Create, 41 &GetDeviceID};
42 &GetDeviceID
43 };
44 42
45 } // namespace 43 } // namespace
46 44
47 const PPB_Flash_DeviceID_1_0* GetPPB_Flash_DeviceID_1_0_Thunk() { 45 const PPB_Flash_DeviceID_1_0* GetPPB_Flash_DeviceID_1_0_Thunk() {
48 return &g_ppb_flash_deviceid_thunk_1_0; 46 return &g_ppb_flash_deviceid_thunk_1_0;
49 } 47 }
50 48
51 } // namespace thunk 49 } // namespace thunk
52 } // namespace ppapi 50 } // namespace ppapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698