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

Unified Diff: chrome/app/kasko_client.h

Issue 2256723002: Fix SyzyASAN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/app/kasko_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/kasko_client.h
diff --git a/chrome/app/kasko_client.h b/chrome/app/kasko_client.h
deleted file mode 100644
index aeb816f381cbcbf6cfa163911c62c49c1c904b58..0000000000000000000000000000000000000000
--- a/chrome/app/kasko_client.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// 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 CHROME_APP_KASKO_CLIENT_H_
-#define CHROME_APP_KASKO_CLIENT_H_
-
-#include "third_party/kasko/kasko_features.h"
-
-#if BUILDFLAG(ENABLE_KASKO)
-
-#include "base/macros.h"
-#include "syzygy/kasko/api/minidump_type.h"
-
-class ChromeWatcherClient;
-
-// Manages the lifetime of Chrome's Kasko client, which permits crash reporting
-// via Kasko. Only a single instance of this class may be instantiated at any
-// time, and it must only be destroyed when the process is single-threaded.
-class KaskoClient {
- public:
- // Initializes a Kasko client that will communicate with the Kasko reporter
- // hosted by the Chrome watcher process managed by |chrome_watcher_client|.
- // All generated reports will use |minidump_type|.
- KaskoClient(ChromeWatcherClient* chrome_watcher_client,
- kasko::api::MinidumpType minidump_type);
- ~KaskoClient();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(KaskoClient);
-};
-
-#endif // BUILDFLAG(ENABLE_KASKO)
-
-#endif // CHROME_APP_KASKO_CLIENT_H_
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/app/kasko_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698