Index: ui/base/resource/data_pack.h |
diff --git a/ui/base/resource/data_pack.h b/ui/base/resource/data_pack.h |
index ffd47a4ad5e90a5f06e00f51b819975697e7d853..56d30d28e3902c87cfea62c7c769684ac1b489da 100644 |
--- a/ui/base/resource/data_pack.h |
+++ b/ui/base/resource/data_pack.h |
@@ -75,8 +75,6 @@ |
#endif |
private: |
- struct Entry; |
- struct Alias; |
class DataSource; |
class BufferDataSource; |
class MemoryMappedDataSource; |
@@ -84,14 +82,11 @@ |
// Does the actual loading of a pack file. |
// Called by Load and LoadFromFile and LoadFromBuffer. |
bool LoadImpl(std::unique_ptr<DataSource> data_source); |
- const Entry* LookupEntryById(uint16_t resource_id) const; |
std::unique_ptr<DataSource> data_source_; |
- const Entry* resource_table_; |
+ // Number of resources in the data. |
size_t resource_count_; |
- const Alias* alias_table_; |
- size_t alias_count_; |
// Type of encoding for text resources. |
TextEncodingType text_encoding_type_; |