blob: 25a01d5d204f73887a1bc1e82d5d80f587633354 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/chrome/browser/sessions/features.h"
namespace session::features {
BASE_FEATURE(kEnableSessionSerializationOptimizations,
"EnableSessionSerializationOptimizations",
base::FEATURE_DISABLED_BY_DEFAULT);
bool UseSessionSerializationOptimizations() {
return base::FeatureList::IsEnabled(kEnableSessionSerializationOptimizations);
}
} // namespace session::features