diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-22 19:19:56 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-22 19:19:56 +0200 |
commit | 612459488e5810335c493c467c239c40787cc1d3 (patch) | |
tree | c2af0c54608799f2ecb79760bd02c9cf5b25911a /gfx/ipc/GPUChild.h | |
parent | a3e8c9f82fb57bdfae9cad40b3d1e6587b73994b (diff) | |
download | UXP-612459488e5810335c493c467c239c40787cc1d3.tar UXP-612459488e5810335c493c467c239c40787cc1d3.tar.gz UXP-612459488e5810335c493c467c239c40787cc1d3.tar.lz UXP-612459488e5810335c493c467c239c40787cc1d3.tar.xz UXP-612459488e5810335c493c467c239c40787cc1d3.zip |
Remove IPC CrashReporterClient/Host
Tag #20.
Diffstat (limited to 'gfx/ipc/GPUChild.h')
-rw-r--r-- | gfx/ipc/GPUChild.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gfx/ipc/GPUChild.h b/gfx/ipc/GPUChild.h index c0f7d076f..888884ddf 100644 --- a/gfx/ipc/GPUChild.h +++ b/gfx/ipc/GPUChild.h @@ -12,9 +12,6 @@ #include "mozilla/gfx/gfxVarReceiver.h" namespace mozilla { -namespace ipc { -class CrashReporterHost; -} // namespace namespace gfx { class GPUProcessHost; @@ -37,7 +34,6 @@ public: // PGPUChild overrides. bool RecvInitComplete(const GPUDeviceData& aData) override; bool RecvReportCheckerboard(const uint32_t& aSeverity, const nsCString& aLog) override; - bool RecvInitCrashReporter(Shmem&& shmem) override; bool RecvAccumulateChildHistogram(InfallibleTArray<Accumulation>&& aAccumulations) override; bool RecvAccumulateChildKeyedHistogram(InfallibleTArray<KeyedAccumulation>&& aAccumulations) override; void ActorDestroy(ActorDestroyReason aWhy) override; @@ -49,7 +45,6 @@ public: private: GPUProcessHost* mHost; - UniquePtr<ipc::CrashReporterHost> mCrashReporter; bool mGPUReady; }; |