// Copyright 2021 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_APPS_APP_DISCOVERY_SERVICE_RESULT_H_ #define CHROME_BROWSER_APPS_APP_DISCOVERY_SERVICE_RESULT_H_ #include <memory> #include <string> namespace apps { enum class AppSource; class GameExtras; class PlayExtras; // Can be overridden by Sources that have unique fields. class SourceExtras { … }; class Result { … }; } // namespace apps #endif // CHROME_BROWSER_APPS_APP_DISCOVERY_SERVICE_RESULT_H_