Searched defs:endings (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8BlobCustomHelpers.h56 const String& endings() const { return m_endings; } function in class:WebCore::V8BlobCustomHelpers::ParsedProperties
66 // Extracts the "type" and "endings" properties out of the BlobPropertyBag passed to a Blob constructor.
87 bool processBlobParts(v8::Local<v8::Object> blobParts, uint32_t blobPartsLength, const String& endings, BlobBuilder&, v8::Isolate*);
H A DV8BlobCustomHelpers.cpp78 V8TRYCATCH_RETURN(bool, containsEndings, dictionary.get("endings", m_endings), false);
81 exceptionState.throwTypeError("The 'endings' property must be either 'transparent' or 'native'.");
110 bool processBlobParts(v8::Local<v8::Object> blobParts, uint32_t blobPartsLength, const String& endings, BlobBuilder& blobBuilder, v8::Isolate* isolate) argument
112 ASSERT(endings == "transparent" || endings == "native");
133 blobBuilder.append(stringValue, endings);

Completed in 159 milliseconds