| 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_PATH_H_ | 5 #ifndef LIBRARIES_NACL_IO_PATH_H_ |
| 6 #define LIBRARIES_NACL_IO_PATH_H_ | 6 #define LIBRARIES_NACL_IO_PATH_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "sdk_util/macros.h" | 11 #include "sdk_util/macros.h" |
| 12 | 12 |
| 13 namespace nacl_io { | 13 namespace nacl_io { |
| 14 | 14 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 private: | 64 private: |
| 65 // Internal representation of the path stored an array of string representing | 65 // Internal representation of the path stored an array of string representing |
| 66 // the directory traversal. The first string is a "/" if this is an absolute | 66 // the directory traversal. The first string is a "/" if this is an absolute |
| 67 // path. | 67 // path. |
| 68 StringArray_t paths_; | 68 StringArray_t paths_; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace nacl_io | 71 } // namespace nacl_io |
| 72 | 72 |
| 73 #endif // PACKAGES_LIBRARIES_NACL_IO_PATH_H_ | 73 #endif // PACKAGES_LIBRARIES_NACL_IO_PATH_H_ |
| OLD | NEW |