Chromium Code Reviews| Index: tools/binary_size/java/src/org/chromium/tools/binary_size/Record.java |
| diff --git a/tools/binary_size/java/src/org/chromium/tools/binary_size/Record.java b/tools/binary_size/java/src/org/chromium/tools/binary_size/Record.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c36735efed9fa67d994a3a0f8f580495e08bbd72 |
| --- /dev/null |
| +++ b/tools/binary_size/java/src/org/chromium/tools/binary_size/Record.java |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +package org.chromium.tools.binary_size; |
| + |
| +/** |
| + * A record that is filled in partially by nm and partially by addr2line, |
| + * along with tracking information about whether or not the lookup in |
| + * addr2line was successful. |
| + */ |
| +class Record { |
| + String address; |
|
bulach
2014/01/08 15:04:00
yeah, so just to close the loop re: volatile...
b
Andrew Hayden (chromium.org)
2014/01/08 21:04:10
Thanks. I am fairly familiar with the Java Memory
|
| + char symbolType; |
| + String symbolName; |
| + String size; |
| + String location; |
| + boolean resolvedSuccessfully; |
| +} |