| OLD | NEW |
| 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 #ifndef LIBRARIES_NACL_IO_MOUNT_HTML5FS_H_ | 5 #ifndef LIBRARIES_NACL_IO_MOUNT_HTML5FS_H_ |
| 6 #define LIBRARIES_NACL_IO_MOUNT_HTML5FS_H_ | 6 #define LIBRARIES_NACL_IO_MOUNT_HTML5FS_H_ |
| 7 | 7 |
| 8 #include <pthread.h> | 8 #include <pthread.h> |
| 9 | 9 |
| 10 #include "nacl_io/mount.h" | 10 #include "nacl_io/mount.h" |
| 11 #include "nacl_io/pepper_interface.h" | 11 #include "nacl_io/pepper_interface.h" |
| 12 #include "nacl_io/typed_mount_factory.h" | 12 #include "nacl_io/typed_mount_factory.h" |
| 13 #include "sdk_util/simple_lock.h" | 13 #include "sdk_util/simple_lock.h" |
| 14 | 14 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 45 | 45 |
| 46 pthread_cond_t filesystem_open_cond_; | 46 pthread_cond_t filesystem_open_cond_; |
| 47 sdk_util::SimpleLock filesysem_open_lock_; | 47 sdk_util::SimpleLock filesysem_open_lock_; |
| 48 | 48 |
| 49 friend class TypedMountFactory<MountHtml5Fs>; | 49 friend class TypedMountFactory<MountHtml5Fs>; |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 } // namespace nacl_io | 52 } // namespace nacl_io |
| 53 | 53 |
| 54 #endif // LIBRARIES_NACL_IO_MOUNT_HTML5FS_H_ | 54 #endif // LIBRARIES_NACL_IO_MOUNT_HTML5FS_H_ |
| OLD | NEW |