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

Unified Diff: public/platform/WebCryptoAlgorithmParams.h

Issue 141073008: [webcrypto] Delete some deprecated code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebCryptoAlgorithmParams.h
diff --git a/public/platform/WebCryptoAlgorithmParams.h b/public/platform/WebCryptoAlgorithmParams.h
index e2de88e19e48d722ffe32654699f2a0254664744..aaed0847aa4713c322de61a44451157b67448ba6 100644
--- a/public/platform/WebCryptoAlgorithmParams.h
+++ b/public/platform/WebCryptoAlgorithmParams.h
@@ -103,9 +103,6 @@ public:
{
}
- // FIXME: Delete once no longer referenced by chromium.
- unsigned short length() const { return m_lengthBits; }
-
unsigned short lengthBits() const { return m_lengthBits; }
private:
@@ -143,15 +140,6 @@ public:
bool hasLengthBytes() const { return m_hasLengthBytes; }
- // FIXME: Delete once no longer referenced by chromium.
- bool getLength(unsigned& length) const
- {
- if (!m_hasLengthBytes)
- return false;
- length = m_optionalLengthBytes;
- return true;
- }
-
unsigned optionalLengthBytes() const { return m_optionalLengthBytes; }
private:
@@ -184,9 +172,6 @@ public:
{
}
- // FIXME: Delete once no longer referenced by chromium.
- unsigned modulusLength() const { return m_modulusLengthBits; }
-
unsigned modulusLengthBits() const { return m_modulusLengthBits; }
const WebVector<unsigned char>& publicExponent() const { return m_publicExponent; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698