| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/macros.h" |
| 12 | |
| 13 #include "chromeos/attestation/attestation_flow.h" | 12 #include "chromeos/attestation/attestation_flow.h" |
| 14 #include "net/url_request/url_fetcher_delegate.h" | 13 #include "net/url_request/url_fetcher_delegate.h" |
| 15 | 14 |
| 16 namespace chromeos { | 15 namespace chromeos { |
| 17 namespace attestation { | 16 namespace attestation { |
| 18 | 17 |
| 19 // This class is a ServerProxy implementation for the Chrome OS attestation | 18 // This class is a ServerProxy implementation for the Chrome OS attestation |
| 20 // flow. It sends all requests to an Attestation CA via HTTPS. | 19 // flow. It sends all requests to an Attestation CA via HTTPS. |
| 21 class AttestationCAClient : public ServerProxy, | 20 class AttestationCAClient : public ServerProxy, |
| 22 public net::URLFetcherDelegate { | 21 public net::URLFetcherDelegate { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 45 // Tracks all URL requests we have started. | 44 // Tracks all URL requests we have started. |
| 46 FetcherCallbackMap pending_requests_; | 45 FetcherCallbackMap pending_requests_; |
| 47 | 46 |
| 48 DISALLOW_COPY_AND_ASSIGN(AttestationCAClient); | 47 DISALLOW_COPY_AND_ASSIGN(AttestationCAClient); |
| 49 }; | 48 }; |
| 50 | 49 |
| 51 } // namespace attestation | 50 } // namespace attestation |
| 52 } // namespace chromeos | 51 } // namespace chromeos |
| 53 | 52 |
| 54 #endif // CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ | 53 #endif // CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ |
| OLD | NEW |