Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / encoding / TextEncoder.cpp
index a669e02..ec5e50c 100644 (file)
 
 #include "modules/encoding/TextEncoder.h"
 
-#include "bindings/v8/Dictionary.h"
-#include "bindings/v8/ExceptionState.h"
+#include "bindings/core/v8/ExceptionState.h"
 #include "wtf/text/CString.h"
 #include "wtf/text/TextEncodingRegistry.h"
 
-namespace WebCore {
+namespace blink {
 
 TextEncoder* TextEncoder::create(const String& utfLabel, ExceptionState& exceptionState)
 {
-    const String& encodingLabel = utfLabel.isNull() ? String("utf-8") : utfLabel;
-
-    WTF::TextEncoding encoding(encodingLabel);
+    WTF::TextEncoding encoding(utfLabel);
     if (!encoding.isValid()) {
-        exceptionState.throwTypeError("The encoding label provided ('" + encodingLabel + "') is invalid.");
+        exceptionState.throwTypeError("The encoding label provided ('" + utfLabel + "') is invalid.");
         return 0;
     }
 
     String name(encoding.name());
     if (name != "UTF-8" && name != "UTF-16LE" && name != "UTF-16BE") {
-        exceptionState.throwTypeError("The encoding provided ('" + encodingLabel + "') is not one of 'utf-8', 'utf-16', or 'utf-16be'.");
+        exceptionState.throwTypeError("The encoding provided ('" + utfLabel + "') is not one of 'utf-8', 'utf-16', or 'utf-16be'.");
         return 0;
     }
 
@@ -62,6 +59,7 @@ TextEncoder::TextEncoder(const WTF::TextEncoding& encoding)
     : m_encoding(encoding)
     , m_codec(newTextCodec(encoding))
 {
+    ScriptWrappable::init(this);
 }
 
 TextEncoder::~TextEncoder()
@@ -75,21 +73,13 @@ String TextEncoder::encoding() const
     return name;
 }
 
-PassRefPtr<Uint8Array> TextEncoder::encode(const String& input, const Dictionary& options)
+PassRefPtr<Uint8Array> TextEncoder::encode(const String& input)
 {
-    bool stream = false;
-    options.get("stream", stream);
-
-    // FIXME: Not flushing is not supported by TextCodec for encode; add it or
-    // handle split surrogates here.
-
     CString result;
-    if (!input.isNull()) {
-        if (input.is8Bit())
-            result = m_codec->encode(input.characters8(), input.length(), WTF::QuestionMarksForUnencodables);
-        else
-            result = m_codec->encode(input.characters16(), input.length(), WTF::QuestionMarksForUnencodables);
-    }
+    if (input.is8Bit())
+        result = m_codec->encode(input.characters8(), input.length(), WTF::QuestionMarksForUnencodables);
+    else
+        result = m_codec->encode(input.characters16(), input.length(), WTF::QuestionMarksForUnencodables);
 
     const char* buffer = result.data();
     const unsigned char* unsignedBuffer = reinterpret_cast<const unsigned char*>(buffer);
@@ -97,4 +87,4 @@ PassRefPtr<Uint8Array> TextEncoder::encode(const String& input, const Dictionary
     return Uint8Array::create(unsignedBuffer, result.length());
 }
 
-} // namespace WebCore
+} // namespace blink