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_ |