blob: 61922f241f558e05d37269d3f32683381d2f691d [file] [log] [blame]
// Copyright 2022 The Chromium Authors. All rights reserved.
// 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 {
const base::Feature kUserNotes{"UserNotes", base::FEATURE_DISABLED_BY_DEFAULT};
bool IsUserNotesEnabled() {
return base::FeatureList::IsEnabled(kUserNotes);
}
} // namespace user_notes