// Copyright 2020 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_TOOLBAR_CHROME_LABS_CHROME_LABS_MODEL_H_ #define CHROME_BROWSER_UI_TOOLBAR_CHROME_LABS_CHROME_LABS_MODEL_H_ #include <string> #include <vector> #include "base/memory/raw_ref.h" #include "components/version_info/channel.h" struct LabInfo { … }; class ChromeLabsModel { … }; // ScopedChromeLabsModelDataForTesting is intended to be used in test settings // to replace the production data in ChromeLabsModel. Upon destruction, // ScopedChromeLabsModelDataForTesting will remove the test data from // ChromeLabsModel. class ScopedChromeLabsModelDataForTesting { … }; #endif // CHROME_BROWSER_UI_TOOLBAR_CHROME_LABS_CHROME_LABS_MODEL_H_