Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(469)

Side by Side Diff: components/webcrypto/jwk.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/visitedlink/browser/visitedlink_master.h ('k') | content/browser/browser_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_WEBCRYPTO_JWK_H_ 5 #ifndef COMPONENTS_WEBCRYPTO_JWK_H_
6 #define COMPONENTS_WEBCRYPTO_JWK_H_ 6 #define COMPONENTS_WEBCRYPTO_JWK_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9
9 #include <vector> 10 #include <vector>
10 11
12 #include "base/memory/scoped_ptr.h"
11 #include "base/values.h" 13 #include "base/values.h"
12 #include "third_party/WebKit/public/platform/WebCrypto.h" 14 #include "third_party/WebKit/public/platform/WebCrypto.h"
13 15
14 namespace webcrypto { 16 namespace webcrypto {
15 17
16 class CryptoData; 18 class CryptoData;
17 class Status; 19 class Status;
18 20
19 // Helper class for parsing a JWK from JSON. 21 // Helper class for parsing a JWK from JSON.
20 // 22 //
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 129
128 // Converts a JWK "key_ops" array to the corresponding WebCrypto usages. Used by 130 // Converts a JWK "key_ops" array to the corresponding WebCrypto usages. Used by
129 // testing. 131 // testing.
130 Status GetWebCryptoUsagesFromJwkKeyOpsForTest( 132 Status GetWebCryptoUsagesFromJwkKeyOpsForTest(
131 const base::ListValue* key_ops, 133 const base::ListValue* key_ops,
132 blink::WebCryptoKeyUsageMask* usages); 134 blink::WebCryptoKeyUsageMask* usages);
133 135
134 } // namespace webcrypto 136 } // namespace webcrypto
135 137
136 #endif // COMPONENTS_WEBCRYPTO_JWK_H_ 138 #endif // COMPONENTS_WEBCRYPTO_JWK_H_
OLDNEW
« no previous file with comments | « components/visitedlink/browser/visitedlink_master.h ('k') | content/browser/browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698