OLD | NEW |
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 CONTENT_RENDERER_WEBCRYPTO_CRYPTO_DATA_H_ | 5 #ifndef CONTENT_CHILD_WEBCRYPTO_CRYPTO_DATA_H_ |
6 #define CONTENT_RENDERER_WEBCRYPTO_CRYPTO_DATA_H_ | 6 #define CONTENT_CHILD_WEBCRYPTO_CRYPTO_DATA_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "third_party/WebKit/public/platform/WebVector.h" | 13 #include "third_party/WebKit/public/platform/WebVector.h" |
14 | 14 |
15 namespace blink { | 15 namespace blink { |
16 class WebArrayBuffer; | 16 class WebArrayBuffer; |
(...skipping 29 matching lines...) Expand all Loading... |
46 const unsigned char* const bytes_; | 46 const unsigned char* const bytes_; |
47 const unsigned int byte_length_; | 47 const unsigned int byte_length_; |
48 | 48 |
49 DISALLOW_COPY_AND_ASSIGN(CryptoData); | 49 DISALLOW_COPY_AND_ASSIGN(CryptoData); |
50 }; | 50 }; |
51 | 51 |
52 } // namespace webcrypto | 52 } // namespace webcrypto |
53 | 53 |
54 } // namespace content | 54 } // namespace content |
55 | 55 |
56 #endif // CONTENT_RENDERER_WEBCRYPTO_CRYPTO_DATA_H_ | 56 #endif // CONTENT_CHILD_WEBCRYPTO_CRYPTO_DATA_H_ |
OLD | NEW |