Index: third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp |
diff --git a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp |
index b21a2c39c2ed8e809380b81501fe0470f22ebe87..37965d904af421f5f60792c6972ad408e02db4c8 100644 |
--- a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp |
+++ b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp |
@@ -344,7 +344,7 @@ bool getBigInteger(const Dictionary& raw, |
if (!getUint8Array(raw, propertyName, bytes, context, error)) |
return false; |
- if (bytes.isEmpty()) { |
+ if (bytes.empty()) { |
// Empty BigIntegers represent 0 according to the spec |
bytes = WebVector<uint8_t>(static_cast<size_t>(1u)); |
DCHECK_EQ(0u, bytes[0]); |