Return the size of a single counter.
(self)
| 379 | return Counter(self.data, 16 + index * self.CounterSize()) |
| 380 | |
| 381 | def CounterSize(self): |
| 382 | """Return the size of a single counter.""" |
| 383 | return 4 + self.max_name_size |
| 384 | |
| 385 | |
| 386 | class ChromeCounter(object): |