Title: [96537] trunk/Tools
Revision
96537
Author
commit-qu...@webkit.org
Date
2011-10-03 13:57:54 -0700 (Mon, 03 Oct 2011)

Log Message

[EFL] DRT: Add JSStringUtils.{cpp,h}
https://bugs.webkit.org/show_bug.cgi?id=66397

Patch by Leandro Pereira <lean...@profusion.mobi> on 2011-10-03
Reviewed by Ryosuke Niwa.

Adds helper functions to compare the equality of C-style strings and
JSStringRef objects.

* DumpRenderTree/efl/JSStringUtils.cpp: Added.
(equals):
* DumpRenderTree/efl/JSStringUtils.h: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/Tools/ChangeLog (96536 => 96537)


--- trunk/Tools/ChangeLog	2011-10-03 20:51:21 UTC (rev 96536)
+++ trunk/Tools/ChangeLog	2011-10-03 20:57:54 UTC (rev 96537)
@@ -1,3 +1,17 @@
+2011-10-03  Leandro Pereira  <lean...@profusion.mobi>
+
+        [EFL] DRT: Add JSStringUtils.{cpp,h}
+        https://bugs.webkit.org/show_bug.cgi?id=66397
+
+        Reviewed by Ryosuke Niwa.
+        
+        Adds helper functions to compare the equality of C-style strings and
+        JSStringRef objects.
+
+        * DumpRenderTree/efl/JSStringUtils.cpp: Added.
+        (equals):
+        * DumpRenderTree/efl/JSStringUtils.h: Added.
+
 2011-10-03  Adam Barth  <aba...@webkit.org>
 
         garden-o-matic should work in Safari 5.1

Added: trunk/Tools/DumpRenderTree/efl/JSStringUtils.cpp (0 => 96537)


--- trunk/Tools/DumpRenderTree/efl/JSStringUtils.cpp	                        (rev 0)
+++ trunk/Tools/DumpRenderTree/efl/JSStringUtils.cpp	2011-10-03 20:57:54 UTC (rev 96537)
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2011 ProFUSION Embedded Systems
+ * Copyright (C) 2011 Samsung Electronics
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
+ * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "JSStringUtils.h"
+
+bool equals(JSStringRef jsString, const char* cString)
+{
+    return JSStringIsEqualToUTF8CString(jsString, cString);
+}
+
+bool equals(JSRetainPtr<JSStringRef> jsString, const char* cString)
+{
+    return equals(jsString.get(), cString);
+}

Added: trunk/Tools/DumpRenderTree/efl/JSStringUtils.h (0 => 96537)


--- trunk/Tools/DumpRenderTree/efl/JSStringUtils.h	                        (rev 0)
+++ trunk/Tools/DumpRenderTree/efl/JSStringUtils.h	2011-10-03 20:57:54 UTC (rev 96537)
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2011 ProFUSION Embedded Systems
+ * Copyright (C) 2011 Samsung Electronics
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
+ * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+
+#ifndef JSStringUtils_h
+#define JSStringUtils_h
+
+#include <_javascript_Core/JSRetainPtr.h>
+#include <_javascript_Core/JSStringRef.h>
+
+bool equals(JSStringRef, const char*);
+bool equals(JSRetainPtr<JSStringRef>, const char*);
+
+#endif // JSStringUtils_h
+
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to