// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_WEBCRYPTO_GENERATE_KEY_RESULT_H_ #define COMPONENTS_WEBCRYPTO_GENERATE_KEY_RESULT_H_ #include "third_party/blink/public/platform/web_crypto.h" namespace webcrypto { // This is the result object when generating keys. It encapsulates either a // secret key, or a public/private key pair. class GenerateKeyResult { … }; } // namespace webcrypto #endif // COMPONENTS_WEBCRYPTO_GENERATE_KEY_RESULT_H_