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

Unified 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: Fixed namespace footer comment Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/crash/BUILD.gn ('k') | chromecast/crash/linux/crash_testing_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/crash/linux/crash_testing_utils.h
diff --git a/chromecast/crash/linux/crash_testing_utils.h b/chromecast/crash/linux/crash_testing_utils.h
new file mode 100644
index 0000000000000000000000000000000000000000..be23b777a5862757ee3e0b0233725c8a6b1a2fa0
--- /dev/null
+++ b/chromecast/crash/linux/crash_testing_utils.h
@@ -0,0 +1,35 @@
+// Copyright 2015 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.
+
+#ifndef CHROMECAST_CRASH_LINUX_CRASH_TESTING_UTILS_H_
+#define CHROMECAST_CRASH_LINUX_CRASH_TESTING_UTILS_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/scoped_vector.h"
+
+namespace chromecast {
+
+class DumpInfo;
+
+// Creates a DumpInfo object corresponding to the deserialization of
+// |json_string|. Returned DumpInfo object maybe invalid if |json_string|
+// doesn't correspond to a valid DumpInfo object.
+scoped_ptr<DumpInfo> CreateDumpInfo(const std::string& json_string);
+
+// Populates |dumps| with all the DumpInfo entries serialized in the lockfile at
+// |lockfile_path|. Returns true on success, false on error.
+bool FetchDumps(const std::string& lockfile_path,
+ ScopedVector<DumpInfo>* dumps);
+
+// Creates an empty lockfile at |lockfile_path|. Returns true on success, false
+// on error.
+bool CreateLockFile(const std::string& lockfile_path);
+
+// Appends serialization of |dump| onto the lockfile at |lockfile_path|.
+// Returns true on success, false on error.
+bool AppendLockFile(const std::string& lockfile_path, const DumpInfo& dump);
+
+} // namespace chromecast
+
+#endif // CHROMECAST_CRASH_LINUX_CRASH_TESTING_UTILS_H_
« no previous file with comments | « chromecast/crash/BUILD.gn ('k') | chromecast/crash/linux/crash_testing_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698