| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #define Algorithm_h | 32 #define Algorithm_h |
| 33 | 33 |
| 34 #include "bindings/v8/ScriptWrappable.h" | 34 #include "bindings/v8/ScriptWrappable.h" |
| 35 #include "public/platform/WebCryptoAlgorithm.h" | 35 #include "public/platform/WebCryptoAlgorithm.h" |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 #include "wtf/PassRefPtr.h" | 37 #include "wtf/PassRefPtr.h" |
| 38 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 typedef int ExceptionCode; | |
| 43 | |
| 44 class Algorithm : public ScriptWrappable, public RefCounted<Algorithm> { | 42 class Algorithm : public ScriptWrappable, public RefCounted<Algorithm> { |
| 45 public: | 43 public: |
| 46 static PassRefPtr<Algorithm> create(const WebKit::WebCryptoAlgorithm& algori
thm) { return adoptRef(new Algorithm(algorithm)); } | 44 static PassRefPtr<Algorithm> create(const WebKit::WebCryptoAlgorithm&); |
| 47 | 45 |
| 48 const String& name(); | 46 String name(); |
| 49 | 47 |
| 50 WebKit::WebCryptoAlgorithmParamsType type() const { return m_algorithm.param
sType(); } | 48 WebKit::WebCryptoAlgorithmParamsType type() const { return m_algorithm.param
sType(); } |
| 51 | 49 |
| 52 protected: | 50 protected: |
| 53 explicit Algorithm(const WebKit::WebCryptoAlgorithm&); | 51 explicit Algorithm(const WebKit::WebCryptoAlgorithm&); |
| 54 | 52 |
| 55 const WebKit::WebCryptoAlgorithm m_algorithm; | 53 const WebKit::WebCryptoAlgorithm m_algorithm; |
| 56 String m_name; | |
| 57 }; | 54 }; |
| 58 | 55 |
| 59 } // namespace WebCore | 56 } // namespace WebCore |
| 60 | 57 |
| 61 #endif | 58 #endif |
| OLD | NEW |