| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/platform/CryptoResult.h" | 35 #include "core/platform/CryptoResult.h" |
| 36 #include "public/platform/WebCrypto.h" | 36 #include "public/platform/WebCrypto.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class ScriptPromiseResolver; | 41 class ScriptPromiseResolver; |
| 42 | 42 |
| 43 // Wrapper around a Promise to notify completion of the crypto operation. | 43 // Wrapper around a Promise to notify completion of the crypto operation. |
| 44 // Platform cannot know about Promises which are declared in bindings. | 44 // Platform cannot know about Promises which are declared in bindings. |
| 45 class CryptoResultImpl : public CryptoResult { | 45 class CryptoResultImpl FINAL : public CryptoResult { |
| 46 public: | 46 public: |
| 47 ~CryptoResultImpl(); | 47 ~CryptoResultImpl(); |
| 48 | 48 |
| 49 static PassRefPtr<CryptoResultImpl> create(ScriptPromise); | 49 static PassRefPtr<CryptoResultImpl> create(ScriptPromise); |
| 50 | 50 |
| 51 virtual void completeWithError() OVERRIDE; | 51 virtual void completeWithError() OVERRIDE; |
| 52 virtual void completeWithBuffer(const blink::WebArrayBuffer&) OVERRIDE; | 52 virtual void completeWithBuffer(const blink::WebArrayBuffer&) OVERRIDE; |
| 53 virtual void completeWithBoolean(bool) OVERRIDE; | 53 virtual void completeWithBoolean(bool) OVERRIDE; |
| 54 virtual void completeWithKey(const blink::WebCryptoKey&) OVERRIDE; | 54 virtual void completeWithKey(const blink::WebCryptoKey&) OVERRIDE; |
| 55 virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const
blink::WebCryptoKey& privateKey) OVERRIDE; | 55 virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const
blink::WebCryptoKey& privateKey) OVERRIDE; |
| 56 | 56 |
| 57 private: | 57 private: |
| 58 explicit CryptoResultImpl(ScriptPromise); | 58 explicit CryptoResultImpl(ScriptPromise); |
| 59 void finish(); | 59 void finish(); |
| 60 | 60 |
| 61 RefPtr<ScriptPromiseResolver> m_promiseResolver; | 61 RefPtr<ScriptPromiseResolver> m_promiseResolver; |
| 62 bool m_finished; | 62 bool m_finished; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace WebCore | 65 } // namespace WebCore |
| 66 | 66 |
| 67 #endif | 67 #endif |
| OLD | NEW |