Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / blob / BlobData.cpp
index 423b8bc..6dd0db6 100644 (file)
@@ -114,7 +114,7 @@ void BlobData::appendText(const String& text, bool doNormalizeLineEndingsToNativ
     m_items.append(BlobDataItem(data.release()));
 }
 
-void BlobData::appendBytes(const void* bytes, long long length)
+void BlobData::appendBytes(const void* bytes, size_t length)
 {
     RefPtr<RawData> data = RawData::create();
     Vector<char>* buffer = data->mutableData();