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

Unified Diff: native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.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/fusefs/fuse_fs.cc
diff --git a/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc b/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc
index 5eaf8e1fc6630cb158b8fb5822c8a78f4fd65fd1..34e7064582d0929781d33d3f8c57877babd59b35 100644
--- a/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc
+++ b/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc
@@ -29,7 +29,8 @@ struct FillDirInfo {
} // namespace
-FuseFs::FuseFs() : fuse_ops_(NULL), fuse_user_data_(NULL) {}
+FuseFs::FuseFs() : fuse_ops_(NULL), fuse_user_data_(NULL) {
+}
Error FuseFs::Init(const FsInitArgs& args) {
Error error = Filesystem::Init(args);
@@ -204,7 +205,8 @@ FuseFsNode::FuseFsNode(Filesystem* filesystem,
struct fuse_operations* fuse_ops,
struct fuse_file_info& info,
const std::string& path)
- : Node(filesystem), fuse_ops_(fuse_ops), info_(info), path_(path) {}
+ : Node(filesystem), fuse_ops_(fuse_ops), info_(info), path_(path) {
+}
bool FuseFsNode::CanOpen(int open_flags) {
struct stat statbuf;
@@ -271,7 +273,8 @@ FileFuseFsNode::FileFuseFsNode(Filesystem* filesystem,
struct fuse_operations* fuse_ops,
struct fuse_file_info& info,
const std::string& path)
- : FuseFsNode(filesystem, fuse_ops, info, path) {}
+ : FuseFsNode(filesystem, fuse_ops, info, path) {
+}
void FileFuseFsNode::Destroy() {
if (!fuse_ops_->release)
@@ -347,7 +350,8 @@ DirFuseFsNode::DirFuseFsNode(Filesystem* filesystem,
struct fuse_operations* fuse_ops,
struct fuse_file_info& info,
const std::string& path)
- : FuseFsNode(filesystem, fuse_ops, info, path) {}
+ : FuseFsNode(filesystem, fuse_ops, info, path) {
+}
void DirFuseFsNode::Destroy() {
if (!fuse_ops_->releasedir)
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/fuse.h ('k') | native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698