| Index: components/webcrypto/algorithms/ec.cc
 | 
| diff --git a/components/webcrypto/openssl/ec_algorithm_openssl.cc b/components/webcrypto/algorithms/ec.cc
 | 
| similarity index 99%
 | 
| rename from components/webcrypto/openssl/ec_algorithm_openssl.cc
 | 
| rename to components/webcrypto/algorithms/ec.cc
 | 
| index 85f95eabe3daf3a22d1694493314867700b72aea..0a5428485b5d8614c2bcb93571c5cb9b08191c0f 100644
 | 
| --- a/components/webcrypto/openssl/ec_algorithm_openssl.cc
 | 
| +++ b/components/webcrypto/algorithms/ec.cc
 | 
| @@ -2,7 +2,7 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#include "components/webcrypto/openssl/ec_algorithm_openssl.h"
 | 
| +#include "components/webcrypto/algorithms/ec.h"
 | 
|  
 | 
|  #include <openssl/ec.h>
 | 
|  #include <openssl/ec_key.h>
 | 
| @@ -11,11 +11,11 @@
 | 
|  
 | 
|  #include "base/logging.h"
 | 
|  #include "base/stl_util.h"
 | 
| +#include "components/webcrypto/algorithms/key.h"
 | 
| +#include "components/webcrypto/algorithms/util_openssl.h"
 | 
|  #include "components/webcrypto/crypto_data.h"
 | 
|  #include "components/webcrypto/generate_key_result.h"
 | 
|  #include "components/webcrypto/jwk.h"
 | 
| -#include "components/webcrypto/openssl/key_openssl.h"
 | 
| -#include "components/webcrypto/openssl/util_openssl.h"
 | 
|  #include "components/webcrypto/status.h"
 | 
|  #include "components/webcrypto/webcrypto_util.h"
 | 
|  #include "crypto/openssl_util.h"
 | 
| 
 |