user_notes_features.cc 436 B

123456789101112131415
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/user_notes/user_notes_features.h"
  5. namespace user_notes {
  6. const base::Feature kUserNotes{"UserNotes", base::FEATURE_DISABLED_BY_DEFAULT};
  7. bool IsUserNotesEnabled() {
  8. return base::FeatureList::IsEnabled(kUserNotes);
  9. }
  10. } // namespace user_notes