root/components/password_manager/core/browser/password_manager_client.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. GetProbabilityForExperiment
  2. IsPasswordSyncEnabled
  3. SetLogger
  4. LogSavePasswordProgress

// Copyright 2014 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/password_manager/core/browser/password_manager_client.h"

base::FieldTrial::Probability
PasswordManagerClient::GetProbabilityForExperiment(
    const std::string& experiment_name) {
  return 0;
}

bool PasswordManagerClient::IsPasswordSyncEnabled() { return false; }

void PasswordManagerClient::SetLogger(PasswordManagerLogger* /*logger*/) {}

void PasswordManagerClient::LogSavePasswordProgress(
    const std::string& /*text*/) {}

/* [<][>][^][v][top][bottom][index][help] */