aboutsummaryrefslogtreecommitdiff
path: root/host/commands/run_cvd/server_loop.h
diff options
context:
space:
mode:
Diffstat (limited to 'host/commands/run_cvd/server_loop.h')
-rw-r--r--host/commands/run_cvd/server_loop.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/host/commands/run_cvd/server_loop.h b/host/commands/run_cvd/server_loop.h
index 9c28dfe2f..0ceeee0cb 100644
--- a/host/commands/run_cvd/server_loop.h
+++ b/host/commands/run_cvd/server_loop.h
@@ -18,7 +18,7 @@
#include <fruit/fruit.h>
-#include "host/commands/run_cvd/launch/secure_env_files.h"
+#include "host/commands/run_cvd/launch/snapshot_control_files.h"
#include "host/commands/run_cvd/launch/webrtc_recorder.h"
#include "host/libs/config/cuttlefish_config.h"
@@ -30,10 +30,10 @@ class ServerLoop {
virtual Result<void> Run() = 0;
};
-fruit::Component<fruit::Required<const CuttlefishConfig,
- const CuttlefishConfig::InstanceSpecific,
- AutoSecureEnvFiles::Type,
- WebRtcRecorder>,
- ServerLoop>
+fruit::Component<
+ fruit::Required<const CuttlefishConfig,
+ const CuttlefishConfig::InstanceSpecific,
+ AutoSnapshotControlFiles::Type, WebRtcRecorder>,
+ ServerLoop>
serverLoopComponent();
}