Home | History | Annotate | Download | only in browser
      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
      3 // found in the LICENSE file.
      4 
      5 #ifndef CONTENT_PUBLIC_BROWSER_CERTIFICATE_REQUEST_RESULT_TYPE_H_
      6 #define CONTENT_PUBLIC_BROWSER_CERTIFICATE_REQUEST_RESULT_TYPE_H_
      7 
      8 namespace content {
      9 
     10 // Used to specify synchronous result codes when processing a certificate
     11 // request.
     12 enum CertificateRequestResultType {
     13   // Continue processing the request. Result will be returned asynchronously.
     14   CERTIFICATE_REQUEST_RESULT_TYPE_CONTINUE,
     15 
     16   // Cancels the request synchronously using a net::ERR_ABORTED.
     17   CERTIFICATE_REQUEST_RESULT_TYPE_CANCEL,
     18 
     19   // Denies the request synchronously using a net::ERR_INSECURE_RESPONSE.
     20   CERTIFICATE_REQUEST_RESULT_TYPE_DENY,
     21 };
     22 
     23 }  // namespace content
     24 
     25 #endif  // CONTENT_PUBLIC_BROWSER_CERTIFICATE_REQUEST_RESULT_TYPE_H_
     26