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

Unified Diff: ppapi/thunk/ppb_file_io_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_file_io_private_thunk.cc
diff --git a/ppapi/thunk/ppb_file_io_private_thunk.cc b/ppapi/thunk/ppb_file_io_private_thunk.cc
index 20c7971a2a0fe7d3482554c039cf03f35a1ae831..38c05e68e0a3d51fa2c8ac8ef6dbfc95ce6d97fd 100644
--- a/ppapi/thunk/ppb_file_io_private_thunk.cc
+++ b/ppapi/thunk/ppb_file_io_private_thunk.cc
@@ -25,14 +25,12 @@ int32_t RequestOSFileHandle(PP_Resource file_io,
EnterResource<PPB_FileIO_API> enter(file_io, callback, true);
if (enter.failed())
return enter.retval();
- return enter.SetResult(enter.object()->RequestOSFileHandle(
- handle,
- enter.callback()));
+ return enter.SetResult(
+ enter.object()->RequestOSFileHandle(handle, enter.callback()));
}
const PPB_FileIO_Private_0_1 g_ppb_fileio_private_thunk_0_1 = {
- &RequestOSFileHandle
-};
+ &RequestOSFileHandle};
} // namespace

Powered by Google App Engine
This is Rietveld 408576698