| OLD | NEW |
| 1 // Copyright 2014 The Chromium OS Authors. All rights reserved. | 1 // Copyright 2014 The Chromium OS 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 "archive.h" | 10 #include "archive.h" |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 JavaScriptRequestorInterface* requestor_; | 180 JavaScriptRequestorInterface* requestor_; |
| 181 | 181 |
| 182 // A factory for creating VolumeArchive. | 182 // A factory for creating VolumeArchive. |
| 183 VolumeArchiveFactoryInterface* volume_archive_factory_; | 183 VolumeArchiveFactoryInterface* volume_archive_factory_; |
| 184 | 184 |
| 185 // A factory for creating VolumeReader. | 185 // A factory for creating VolumeReader. |
| 186 VolumeReaderFactoryInterface* volume_reader_factory_; | 186 VolumeReaderFactoryInterface* volume_reader_factory_; |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 #endif /// VOLUME_H_ | 189 #endif /// VOLUME_H_ |
| OLD | NEW |