password_manager_pref_names.cc revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
1// Copyright 2014 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
5#include "components/password_manager/core/common/password_manager_pref_names.h"
6
7namespace prefs {
8
9// A list of numbers. Each number corresponds to one of the domains monitored
10// for save-password-prompt breakages. That number is a random index into
11// the array of groups containing the monitored domain. That group should be
12// used for reporting that domain.
13const char kPasswordManagerGroupsForDomains[] =
14    "profile.password_manager_groups_for_domains";
15
16}  // namespace prefs
17