OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // InMemoryURLIndex caching protocol buffers. | 5 // InMemoryURLIndex caching protocol buffers. |
6 // | 6 // |
7 // At certain times during browser operation, the indexes from the | 7 // At certain times during browser operation, the indexes from the |
8 // InMemoryURLIndex are written to a disk-based cache using the | 8 // InMemoryURLIndex are written to a disk-based cache using the |
9 // following protobuf description. | 9 // following protobuf description. |
10 | 10 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 optional int32 version = 2; | 94 optional int32 version = 2; |
95 required int32 history_item_count = 3; | 95 required int32 history_item_count = 3; |
96 | 96 |
97 optional WordListItem word_list = 4; | 97 optional WordListItem word_list = 4; |
98 optional WordMapItem word_map = 5; | 98 optional WordMapItem word_map = 5; |
99 optional CharWordMapItem char_word_map = 6; | 99 optional CharWordMapItem char_word_map = 6; |
100 optional WordIDHistoryMapItem word_id_history_map = 7; | 100 optional WordIDHistoryMapItem word_id_history_map = 7; |
101 optional HistoryInfoMapItem history_info_map = 8; | 101 optional HistoryInfoMapItem history_info_map = 8; |
102 optional WordStartsMapItem word_starts_map = 9; | 102 optional WordStartsMapItem word_starts_map = 9; |
103 } | 103 } |
OLD | NEW |