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

Unified Diff: native_client_sdk/src/libraries/nacl_io/nacl_io.cc

Issue 303223007: [NaCl SDK] nacl_io: Run clang-format over nacl_io sources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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: native_client_sdk/src/libraries/nacl_io/nacl_io.cc
diff --git a/native_client_sdk/src/libraries/nacl_io/nacl_io.cc b/native_client_sdk/src/libraries/nacl_io/nacl_io.cc
index ee61e9d1eec6e5ab1cfb37da0c4bcc070270a0cf..635ce9cc901040042a1662559b69fe8df38495ae 100644
--- a/native_client_sdk/src/libraries/nacl_io/nacl_io.cc
+++ b/native_client_sdk/src/libraries/nacl_io/nacl_io.cc
@@ -12,12 +12,10 @@ void nacl_io_init() {
ki_init(NULL);
}
-void nacl_io_init_ppapi(PP_Instance instance,
- PPB_GetInterface get_interface) {
+void nacl_io_init_ppapi(PP_Instance instance, PPB_GetInterface get_interface) {
ki_init_ppapi(NULL, instance, get_interface);
}
-
int nacl_io_register_fs_type(const char* fs_type, fuse_operations* fuse_ops) {
return ki_get_proxy()->RegisterFsType(fs_type, fuse_ops);
}
@@ -27,6 +25,6 @@ int nacl_io_unregister_fs_type(const char* fs_type) {
}
int nacl_io_register_exit_handler(nacl_io_exit_handler_t exit_handler,
- void* user_data) {
+ void* user_data) {
return ki_get_proxy()->RegisterExitHandler(exit_handler, user_data);
}
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/memfs/mem_fs_node.cc ('k') | native_client_sdk/src/libraries/nacl_io/node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698