From aecd62ad58ca10c1589507b7da46031a4eb72f40 Mon Sep 17 00:00:00 2001 From: eroman Date: Thu, 11 Sep 2014 20:49:16 -0700 Subject: [PATCH] Fix a header guard to match filepath. Review URL: https://codereview.chromium.org/564583003 Cr-Commit-Position: refs/heads/master@{#294539} --- content/child/webcrypto/algorithm_implementation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/child/webcrypto/algorithm_implementation.h b/content/child/webcrypto/algorithm_implementation.h index ac32413bcb83c4..725a8ea474326f 100644 --- a/content/child/webcrypto/algorithm_implementation.h +++ b/content/child/webcrypto/algorithm_implementation.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CONTENT_CHILD_WEBCRYPTO_CRYPTO_ALGORITHM_IMPLEMENTATION_H_ -#define CONTENT_CHILD_WEBCRYPTO_CRYPTO_ALGORITHM_IMPLEMENTATION_H_ +#ifndef CONTENT_CHILD_WEBCRYPTO_ALGORITHM_IMPLEMENTATION_H_ +#define CONTENT_CHILD_WEBCRYPTO_ALGORITHM_IMPLEMENTATION_H_ #include #include @@ -171,4 +171,4 @@ class AlgorithmImplementation { } // namespace content -#endif // CONTENT_CHILD_WEBCRYPTO_CRYPTO_ALGORITHM_IMPLEMENTATION_H_ +#endif // CONTENT_CHILD_WEBCRYPTO_ALGORITHM_IMPLEMENTATION_H_