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

Side by Side Diff: Source/modules/crypto/CryptoResultImpl.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/modules/crypto/DOMWindowCrypto.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/modules/crypto/DOMWindowCrypto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698