OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // A tool to dump HTML5 filesystem from CUI. | 5 // A tool to dump HTML5 filesystem from CUI. |
6 // | 6 // |
7 // Usage: | 7 // Usage: |
8 // | 8 // |
9 // ./out/Release/dump_file_system [options] <filesystem dir> [origin]... | 9 // ./out/Release/dump_file_system [options] <filesystem dir> [origin]... |
10 // | 10 // |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 | 196 |
197 if (argc == 2) { | 197 if (argc == 2) { |
198 fileapi::DumpFileSystem(file_system_dir); | 198 fileapi::DumpFileSystem(file_system_dir); |
199 } else { | 199 } else { |
200 for (int i = 2; i < argc; i++) { | 200 for (int i = 2; i < argc; i++) { |
201 fileapi::DumpOrigin(file_system_dir, argv[i]); | 201 fileapi::DumpOrigin(file_system_dir, argv[i]); |
202 } | 202 } |
203 } | 203 } |
204 return 0; | 204 return 0; |
205 } | 205 } |
OLD | NEW |