Chromium Code Reviews| 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_RENDERER_WEBCRYPTO_CRYPTO_DATA_H_ |
|
eroman
2014/03/06 01:49:13
Please change the header guards for all files
jww
2014/03/06 02:04:13
Yikes! Thanks.
| |
| 6 #define CONTENT_RENDERER_WEBCRYPTO_CRYPTO_DATA_H_ | 6 #define CONTENT_RENDERER_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 { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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_RENDERER_WEBCRYPTO_CRYPTO_DATA_H_ |
| OLD | NEW |