| OLD | NEW |
| 1 // Copyright 2014 The Chromium OS Authors. All rights reserved. | 1 // Copyright 2014 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 VOLUME_H_ | 5 #ifndef VOLUME_H_ |
| 6 #define VOLUME_H_ | 6 #define VOLUME_H_ |
| 7 | 7 |
| 8 #include <pthread.h> | 8 #include <pthread.h> |
| 9 | 9 |
| 10 #include "ppapi/cpp/instance_handle.h" | 10 #include "ppapi/cpp/instance_handle.h" |
| 11 #include "ppapi/cpp/var_array_buffer.h" | 11 #include "ppapi/cpp/var_array_buffer.h" |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 VolumeArchiveFactoryInterface* volume_archive_factory_; | 182 VolumeArchiveFactoryInterface* volume_archive_factory_; |
| 183 | 183 |
| 184 // A factory for creating VolumeReader. | 184 // A factory for creating VolumeReader. |
| 185 VolumeReaderFactoryInterface* volume_reader_factory_; | 185 VolumeReaderFactoryInterface* volume_reader_factory_; |
| 186 | 186 |
| 187 // A map that converts index of file in the volume to pathname. | 187 // A map that converts index of file in the volume to pathname. |
| 188 std::map<int, std::string> index_to_pathname_; | 188 std::map<int, std::string> index_to_pathname_; |
| 189 }; | 189 }; |
| 190 | 190 |
| 191 #endif /// VOLUME_H_ | 191 #endif /// VOLUME_H_ |
| OLD | NEW |