// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_METRICS_ENVIRONMENT_RECORDER_H_ #define COMPONENTS_METRICS_ENVIRONMENT_RECORDER_H_ #include <string> #include "base/memory/raw_ptr.h" class PrefService; class PrefRegistrySimple; namespace metrics { class SystemProfileProto; // Stores system profile information to prefs for creating stability logs // in the next launch of chrome, and reads data from previous launches. class EnvironmentRecorder { … }; } // namespace metrics #endif // COMPONENTS_METRICS_ENVIRONMENT_RECORDER_H_