blob: f4fc4dba13d75c4844c8753456127710f4ec3b23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright 2013 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 CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_
#define CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_
#include "base/basictypes.h"
#include "base/memory/weak_ptr.h"
#include "chromeos/cert_loader.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/network/network_state_handler_observer.h"
namespace chromeos {
class NetworkStateHandler;
// Migrates network configurations with incorrect or missing slot IDs of client
// certificates.
class CHROMEOS_EXPORT NetworkCertMigrator : public NetworkStateHandlerObserver,
public CertLoader::Observer {
public:
~NetworkCertMigrator() override;
private:
friend class NetworkHandler;
friend class NetworkCertMigratorTest;
class MigrationTask;
NetworkCertMigrator();
void Init(NetworkStateHandler* network_state_handler);
// NetworkStateHandlerObserver overrides
void NetworkListChanged() override;
// CertLoader::Observer overrides
void OnCertificatesLoaded(const net::CertificateList& cert_list,
bool initial_load) override;
// Unowned associated NetworkStateHandler* (global or test instance).
NetworkStateHandler* network_state_handler_;
base::WeakPtrFactory<NetworkCertMigrator> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(NetworkCertMigrator);
};
} // namespace chromeos
#endif // CHROMEOS_NETWORK_NETWORK_CERT_MIGRATOR_H_
|