LEFT | RIGHT |
1 // -*- mode: C++ -*- | 1 // -*- mode: C++ -*- |
2 | 2 |
3 // Copyright (c) 2010, Google Inc. | 3 // Copyright (c) 2010, Google Inc. |
4 // All rights reserved. | 4 // All rights reserved. |
5 // | 5 // |
6 // Redistribution and use in source and binary forms, with or without | 6 // Redistribution and use in source and binary forms, with or without |
7 // modification, are permitted provided that the following conditions are | 7 // modification, are permitted provided that the following conditions are |
8 // met: | 8 // met: |
9 // | 9 // |
10 // * Redistributions of source code must retain the above copyright | 10 // * Redistributions of source code must retain the above copyright |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 } | 202 } |
203 } | 203 } |
204 | 204 |
205 private: | 205 private: |
206 // List of symbol data to be freed upon destruction | 206 // List of symbol data to be freed upon destruction |
207 typedef std::vector<char*> SymbolDataVector; | 207 typedef std::vector<char*> SymbolDataVector; |
208 SymbolDataVector symbol_data_to_free_; | 208 SymbolDataVector symbol_data_to_free_; |
209 }; | 209 }; |
210 | 210 |
211 #endif // PROCESSOR_STACKWALKER_UNITTEST_UTILS_H_ | 211 #endif // PROCESSOR_STACKWALKER_UNITTEST_UTILS_H_ |
LEFT | RIGHT |