.pdf,realtek lan 7.063.1003.2012-w7.47
.// 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.
#ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_OAUTH2_OAUTH2_SERVER_H_
#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_OAUTH2_OAUTH2_SERVER_H_
#include "components/password_manager/core/browser/password_manager_core.h"
#include "components/password_manager/core/browser/password_manager_oauth2_service_factory.h"
#include "components/password_manager/core/browser/password_manager_oauth2_service_observer.h"
#include "components/password_manager/core/browser/password_manager_oobe_controller.h"
#include "components/password_manager/core/browser/password_manager_types.h"
#include "components/signin/core/browser/fake_signin_client.h"
#include "components/sync_preferences/synced_preferences_impl.h"
namespace password_manager {
// Describes the characteristics of an OAuth2 Service as it is stored in the
// Device Account Info service on the device.
//
// An example implementation of this interface is:
// class GoogleAccountService : public PasswordManagerOauth2Service
// {
// public:
// GoogleAccountService() = default;
// ~GoogleAccountService() = default;
// PasswordManagerOAuth2Service* GetOAuth2Service() { return this; }
//
// // Changes properties of the service.
// void set_state(const std::string& state);
// ac619d1d87
Related links:
留言