OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROMECAST_CRASH_LINUX_CRASH_TESTING_UTILS_H_ | |
6 #define CHROMECAST_CRASH_LINUX_CRASH_TESTING_UTILS_H_ | |
7 | |
8 #include "base/memory/scoped_ptr.h" | |
9 #include "base/memory/scoped_vector.h" | |
10 | |
11 namespace chromecast { | |
12 | |
13 class DumpInfo; | |
14 | |
15 scoped_ptr<DumpInfo> CreateDumpInfo(const std::string& json_string); | |
slan
2015/07/28 23:50:30
Please put brief comments detailing |inputs| and r
bcf_google
2015/07/29 00:41:13
Done.
| |
16 | |
17 bool FetchDumps(const std::string& lockfile_path, | |
18 ScopedVector<DumpInfo>* dumps); | |
19 | |
20 bool CreateLockFile(const std::string& lockfile_path); | |
21 | |
22 bool AppendLockFile(const std::string& lockfile_path, const DumpInfo& dump); | |
23 } | |
24 | |
25 #endif // CHROMECAST_CRASH_LINUX_CRASH_TESTING_UTILS_H_ | |
OLD | NEW |