// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/webui/whats_new/whats_new_registrar.h" #include "chrome/browser/ui/webui/whats_new/whats_new_storage_service_impl.h" #include "ui/webui/resources/js/browser_command/browser_command.mojom.h" namespace whats_new { BrowserCommand; void RegisterWhatsNewModules(whats_new::WhatsNewRegistry* registry) { … } void RegisterWhatsNewEditions(whats_new::WhatsNewRegistry* registry) { … } std::unique_ptr<WhatsNewRegistry> CreateWhatsNewRegistry() { … } } // namespace whats_new