pref_names.cc 1003 B

123456789101112131415161718192021222324252627
  1. // Copyright 2021 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/accuracy_tips/pref_names.h"
  5. namespace accuracy_tips {
  6. namespace prefs {
  7. // The last time an accuracy tip was shown.
  8. const char kLastAccuracyTipShown[] = "accuracy_tips.last_tip_shown";
  9. // The last time an accuracy tip was shown.
  10. // Alternative pref to simulate behavior for dark launch.
  11. const char kLastAccuracyTipShownDisabledUi[] =
  12. "accuracy_tips.last_tip_shown_disabled";
  13. // List of |AccuracyTipInteraction| events from previous dialog prompts.
  14. const char kPreviousInteractions[] = "accuracy_tips.previous_interactions";
  15. // List of |AccuracyTipInteraction| events from previous dialog prompts.
  16. // Alternative pref to simulate behavior for dark launch.
  17. const char kPreviousInteractionsDisabledUi[] =
  18. "accuracy_tips.previous_interactions_disabled";
  19. } // namespace prefs
  20. } // namespace accuracy_tips