1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef UPDATE_ENGINE_DLCSERVICE_CHROMEOS_H_
- #define UPDATE_ENGINE_DLCSERVICE_CHROMEOS_H_
- #include <memory>
- #include <string>
- #include <vector>
- #include "update_engine/common/dlcservice_interface.h"
- namespace chromeos_update_engine {
- class DlcServiceChromeOS : public DlcServiceInterface {
- public:
- DlcServiceChromeOS() = default;
- ~DlcServiceChromeOS() = default;
-
- bool GetInstalled(std::vector<std::string>* dlc_module_ids) override;
- private:
- DISALLOW_COPY_AND_ASSIGN(DlcServiceChromeOS);
- };
- }
- #endif
|