blob: 42eb72ce8989593a673b7d3452883e285c2fb8e1 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/user_notes/user_notes_features.h"
namespace user_notes {
BASE_FEATURE(kUserNotes, "UserNotes", base::FEATURE_DISABLED_BY_DEFAULT);
bool IsUserNotesEnabled() {
return base::FeatureList::IsEnabled(kUserNotes);
}
} // namespace user_notes