Return the ascii name of this counter.
(self)
| 403 | return self.data.IntAt(self.value_offset) |
| 404 | |
| 405 | def Name(self): |
| 406 | """Return the ascii name of this counter.""" |
| 407 | result = "" |
| 408 | index = self.name_offset |
| 409 | current = self.data.ByteAt(index) |
| 410 | while current: |
| 411 | result += chr(current) |
| 412 | index += 1 |
| 413 | current = self.data.ByteAt(index) |
| 414 | return result |
| 415 | |
| 416 | |
| 417 | class ChromeCounterCollection(object): |