Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(434)

Side by Side Diff: chromecast/crash/linux/crash_testing_utils.h

Issue 1254113004: [Chromecast] Consolidate duplicated crash test functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Updated commit message Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698