// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_WEBUI_HELP_TEST_VERSION_UPDATER_H_ #define CHROME_BROWSER_UI_WEBUI_HELP_TEST_VERSION_UPDATER_H_ #include "build/build_config.h" #include "build/chromeos_buildflags.h" #include "chrome/browser/ui/webui/help/version_updater.h" // A very simple VersionUpdater implementation that immediately invokes the // StatusCallback with predefined parameters. Since this is only used for // testing, only the parts of the interface that are needed for testing have // been implemented. class TestVersionUpdater : public VersionUpdater { … }; #endif // CHROME_BROWSER_UI_WEBUI_HELP_TEST_VERSION_UPDATER_H_