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

Unified Diff: ppapi/thunk/ppb_ext_crx_file_system_private_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 side-by-side diff with in-line comments
Download patch
Index: ppapi/thunk/ppb_ext_crx_file_system_private_thunk.cc
diff --git a/ppapi/thunk/ppb_ext_crx_file_system_private_thunk.cc b/ppapi/thunk/ppb_ext_crx_file_system_private_thunk.cc
index 67f0ec86865971544ff21a7daee1e947ea012ac5..2854f433c4fd7dbc90979fabf987fefb97a5d843 100644
--- a/ppapi/thunk/ppb_ext_crx_file_system_private_thunk.cc
+++ b/ppapi/thunk/ppb_ext_crx_file_system_private_thunk.cc
@@ -25,22 +25,20 @@ int32_t Open(PP_Instance instance,
callback);
if (enter.failed())
return enter.retval();
- return enter.SetResult(enter.functions()->Open(
- instance,
- PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_CRX,
- file_system,
- enter.callback()));
+ return enter.SetResult(
+ enter.functions()->Open(instance,
+ PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_CRX,
+ file_system,
+ enter.callback()));
}
const PPB_Ext_CrxFileSystem_Private_0_1
- g_ppb_ext_crxfilesystem_private_thunk_0_1 = {
- &Open
-};
+ g_ppb_ext_crxfilesystem_private_thunk_0_1 = {&Open};
} // namespace
const PPB_Ext_CrxFileSystem_Private_0_1*
- GetPPB_Ext_CrxFileSystem_Private_0_1_Thunk() {
+GetPPB_Ext_CrxFileSystem_Private_0_1_Thunk() {
return &g_ppb_ext_crxfilesystem_private_thunk_0_1;
}

Powered by Google App Engine
This is Rietveld 408576698