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

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

Issue 984053003: [bindings] Remove custom binding usage from CryptoKey.idl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing! Created 5 years, 9 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
« no previous file with comments | « Source/bindings/modules/v8/custom/custom.gypi ('k') | Source/modules/crypto/CryptoKey.cpp » ('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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 public: 47 public:
48 static CryptoKey* create(const WebCryptoKey& key) 48 static CryptoKey* create(const WebCryptoKey& key)
49 { 49 {
50 return new CryptoKey(key); 50 return new CryptoKey(key);
51 } 51 }
52 52
53 ~CryptoKey(); 53 ~CryptoKey();
54 54
55 String type() const; 55 String type() const;
56 bool extractable() const; 56 bool extractable() const;
57 ScriptValue algorithm(ScriptState*);
57 Vector<String> usages() const; 58 Vector<String> usages() const;
58 59
59 const WebCryptoKey& key() const { return m_key; } 60 const WebCryptoKey& key() const { return m_key; }
60 61
61 // If the key cannot be used with the indicated algorithm, returns false 62 // If the key cannot be used with the indicated algorithm, returns false
62 // and completes the CryptoResult with an error. 63 // and completes the CryptoResult with an error.
63 bool canBeUsedForAlgorithm(const WebCryptoAlgorithm&, WebCryptoKeyUsage, Cry ptoResult*) const; 64 bool canBeUsedForAlgorithm(const WebCryptoAlgorithm&, WebCryptoKeyUsage, Cry ptoResult*) const;
64 65
65 // On failure, these return false and complete the CryptoResult with an erro r. 66 // On failure, these return false and complete the CryptoResult with an erro r.
66 static bool parseFormat(const String&, WebCryptoKeyFormat&, CryptoResult*); 67 static bool parseFormat(const String&, WebCryptoKeyFormat&, CryptoResult*);
67 static bool parseUsageMask(const Vector<String>&, WebCryptoKeyUsageMask&, Cr yptoResult*); 68 static bool parseUsageMask(const Vector<String>&, WebCryptoKeyUsageMask&, Cr yptoResult*);
68 69
69 DEFINE_INLINE_TRACE() { } 70 DEFINE_INLINE_TRACE() { }
70 71
71 protected: 72 protected:
72 explicit CryptoKey(const WebCryptoKey&); 73 explicit CryptoKey(const WebCryptoKey&);
73 74
74 const WebCryptoKey m_key; 75 const WebCryptoKey m_key;
75 }; 76 };
76 77
77 } // namespace blink 78 } // namespace blink
78 79
79 #endif // CryptoKey_h 80 #endif // CryptoKey_h
OLDNEW
« no previous file with comments | « Source/bindings/modules/v8/custom/custom.gypi ('k') | Source/modules/crypto/CryptoKey.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698