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

Unified Diff: mojo/services/files/interfaces/directory.mojom

Issue 1741963002: Auto-formatted all .mojom files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « mojo/services/contacts/interfaces/contacts.mojom ('k') | mojo/services/files/interfaces/file.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/files/interfaces/directory.mojom
diff --git a/mojo/services/files/interfaces/directory.mojom b/mojo/services/files/interfaces/directory.mojom
index d4759d1bad3e59d43f9338d31a02c015a107d8f5..e7af0ecf5e4e9df904c2f4170acc5728ece95b9e 100644
--- a/mojo/services/files/interfaces/directory.mojom
+++ b/mojo/services/files/interfaces/directory.mojom
@@ -36,14 +36,12 @@ interface Directory {
// Opens the file specified by |path| with the given |open_flags|. |file| is
// optional, mainly for consistency with |OpenDirectory()| (but may be useful,
// together with |kOpenFlagCreate|, for "touching" a file).
- OpenFile(string path, File&? file, uint32 open_flags)
- => (Error error);
+ OpenFile(string path, File&? file, uint32 open_flags) => (Error error);
// Opens the directory specified by |path|. |directory| is optional, so that
// this may be used as a simple "mkdir()" with |kOpenFlagCreate|.
- OpenDirectory(string path,
- Directory&? directory,
- uint32 open_flags) => (Error error);
+ OpenDirectory(string path, Directory&? directory, uint32 open_flags)
+ => (Error error);
// Renames/moves the file/directory given by |path| to |new_path|.
Rename(string path, string new_path) => (Error error);
« no previous file with comments | « mojo/services/contacts/interfaces/contacts.mojom ('k') | mojo/services/files/interfaces/file.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698