| Index: components/webcrypto/algorithms/aes.cc
 | 
| diff --git a/components/webcrypto/openssl/aes_algorithm_openssl.cc b/components/webcrypto/algorithms/aes.cc
 | 
| similarity index 97%
 | 
| rename from components/webcrypto/openssl/aes_algorithm_openssl.cc
 | 
| rename to components/webcrypto/algorithms/aes.cc
 | 
| index 0a47286c2323b7c8cabda03ccc66d459a2ddeefc..8b37913643e15a410deecf39b5c98d6192e01c92 100644
 | 
| --- a/components/webcrypto/openssl/aes_algorithm_openssl.cc
 | 
| +++ b/components/webcrypto/algorithms/aes.cc
 | 
| @@ -2,13 +2,13 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#include "components/webcrypto/openssl/aes_algorithm_openssl.h"
 | 
| +#include "components/webcrypto/algorithms/aes.h"
 | 
|  
 | 
|  #include "base/logging.h"
 | 
| +#include "components/webcrypto/algorithms/key.h"
 | 
| +#include "components/webcrypto/algorithms/util_openssl.h"
 | 
|  #include "components/webcrypto/crypto_data.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 "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h"
 | 
| 
 |