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

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/mount_dev.cc

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix whitespace Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #if defined(WIN32) 5 #if defined(WIN32)
6 #define _CRT_RAND_S 6 #define _CRT_RAND_S
7 #endif 7 #endif
8 8
9 #include <errno.h> 9 #include <errno.h>
10 #include <fcntl.h> 10 #include <fcntl.h>
11 #include <string.h> 11 #include <string.h>
12 #include "nacl_mounts/mount_dev.h" 12 #include "nacl_io/mount_dev.h"
13 #include "nacl_mounts/mount_node.h" 13 #include "nacl_io/mount_node.h"
14 #include "nacl_mounts/mount_node_dir.h" 14 #include "nacl_io/mount_node_dir.h"
15 #include "nacl_mounts/pepper_interface.h" 15 #include "nacl_io/pepper_interface.h"
16 #include "utils/auto_lock.h" 16 #include "utils/auto_lock.h"
17 17
18 #if defined(__native_client__) 18 #if defined(__native_client__)
19 # include <irt.h> 19 # include <irt.h>
20 #elif defined(WIN32) 20 #elif defined(WIN32)
21 # include <stdlib.h> 21 # include <stdlib.h>
22 #endif 22 #endif
23 23
24 namespace { 24 namespace {
25 25
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 ReleaseAndNullNode(&tty_node_); 273 ReleaseAndNullNode(&tty_node_);
274 ReleaseAndNullNode(&console3_node_); 274 ReleaseAndNullNode(&console3_node_);
275 ReleaseAndNullNode(&console2_node_); 275 ReleaseAndNullNode(&console2_node_);
276 ReleaseAndNullNode(&console1_node_); 276 ReleaseAndNullNode(&console1_node_);
277 ReleaseAndNullNode(&console0_node_); 277 ReleaseAndNullNode(&console0_node_);
278 ReleaseAndNullNode(&random_node_); 278 ReleaseAndNullNode(&random_node_);
279 ReleaseAndNullNode(&zero_node_); 279 ReleaseAndNullNode(&zero_node_);
280 ReleaseAndNullNode(&null_node_); 280 ReleaseAndNullNode(&null_node_);
281 ReleaseAndNullNode(&root_); 281 ReleaseAndNullNode(&root_);
282 } 282 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/mount_dev.h ('k') | native_client_sdk/src/libraries/nacl_io/mount_html5fs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698