Index: chromecast/crash/android/cast_crash_reporter_client_android.h |
diff --git a/chromecast/crash/android/cast_crash_reporter_client_android.h b/chromecast/crash/android/cast_crash_reporter_client_android.h |
deleted file mode 100644 |
index 3f296ab63bf9190902e4a15dd9e3b9653a14e7f9..0000000000000000000000000000000000000000 |
--- a/chromecast/crash/android/cast_crash_reporter_client_android.h |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-// Copyright 2014 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_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ |
-#define CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ |
- |
-#include "base/compiler_specific.h" |
-#include "components/crash/app/crash_reporter_client.h" |
- |
-namespace chromecast { |
- |
-class CastCrashReporterClientAndroid |
- : public crash_reporter::CrashReporterClient { |
- public: |
- explicit CastCrashReporterClientAndroid(const std::string& process_type); |
- ~CastCrashReporterClientAndroid() override; |
- |
- // crash_reporter::CrashReporterClient implementation: |
- void GetProductNameAndVersion(const char** product_name, |
- const char** version) override; |
- base::FilePath GetReporterLogFilename() override; |
- bool GetCrashDumpLocation(base::FilePath* crash_dir) override; |
- int GetAndroidMinidumpDescriptor() override; |
- bool GetCollectStatsConsent() override; |
- bool EnableBreakpadForProcess( |
- const std::string& process_type) override; |
- size_t RegisterCrashKeys() override; |
- |
- private: |
- std::string process_type_; |
- |
- DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid); |
-}; |
- |
-} // namespace chromecast |
- |
-#endif // CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ |