// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/browser/updater/uninstall_ping_sender.h" #include "base/version.h" #include "extensions/browser/updater/update_service.h" namespace extensions { UninstallPingSender::UninstallPingSender(ExtensionRegistry* registry, Filter filter) : … { … } UninstallPingSender::~UninstallPingSender() = default; void UninstallPingSender::OnExtensionUninstalled( content::BrowserContext* browser_context, const Extension* extension, UninstallReason reason) { … } } // namespace extensions