Title: [95007] trunk/Tools
Revision
95007
Author
commit-qu...@webkit.org
Date
2011-09-12 20:38:22 -0700 (Mon, 12 Sep 2011)

Log Message

[EFL] DRT: Add DumpRenderTreeEfl.h
https://bugs.webkit.org/show_bug.cgi?id=63993

Patch by Leandro Pereira <lean...@profusion.mobi> on 2011-09-12
Reviewed by Eric Seidel.

This header contains some global variables used by EFL's
DumpRenderTree implementation.

* DumpRenderTree/DumpRenderTree.h: Include DumpRenderTreeEfl.h when
appropriate.
* DumpRenderTree/efl/DumpRenderTreeEfl.h: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/Tools/ChangeLog (95006 => 95007)


--- trunk/Tools/ChangeLog	2011-09-13 03:34:18 UTC (rev 95006)
+++ trunk/Tools/ChangeLog	2011-09-13 03:38:22 UTC (rev 95007)
@@ -1,3 +1,17 @@
+2011-09-12  Leandro Pereira  <lean...@profusion.mobi>
+
+        [EFL] DRT: Add DumpRenderTreeEfl.h
+        https://bugs.webkit.org/show_bug.cgi?id=63993
+
+        Reviewed by Eric Seidel.
+        
+        This header contains some global variables used by EFL's
+        DumpRenderTree implementation.
+
+        * DumpRenderTree/DumpRenderTree.h: Include DumpRenderTreeEfl.h when
+        appropriate.
+        * DumpRenderTree/efl/DumpRenderTreeEfl.h: Added.
+
 2011-09-12  Raphael Kubo da Costa  <k...@profusion.mobi>
 
         [EFL] Send the right key names for PageUp and PageDown.

Modified: trunk/Tools/DumpRenderTree/DumpRenderTree.h (95006 => 95007)


--- trunk/Tools/DumpRenderTree/DumpRenderTree.h	2011-09-13 03:34:18 UTC (rev 95006)
+++ trunk/Tools/DumpRenderTree/DumpRenderTree.h	2011-09-13 03:38:22 UTC (rev 95007)
@@ -42,6 +42,8 @@
 #include "DumpRenderTreeGtk.h"
 #elif PLATFORM(WX)
 #include "DumpRenderTreeWx.h"
+#elif PLATFORM(EFL)
+#include "DumpRenderTreeEfl.h"
 #endif
 
 #include <string>

Added: trunk/Tools/DumpRenderTree/efl/DumpRenderTreeEfl.h (0 => 95007)


--- trunk/Tools/DumpRenderTree/efl/DumpRenderTreeEfl.h	                        (rev 0)
+++ trunk/Tools/DumpRenderTree/efl/DumpRenderTreeEfl.h	2011-09-13 03:38:22 UTC (rev 95007)
@@ -0,0 +1,41 @@
+/*
+ * 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.  Red istributions 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 DumpRenderTreeEfl_h
+#define DumpRenderTreeEfl_h
+
+#include <Ecore.h>
+#include <Evas.h>
+#include <wtf/OwnPtr.h>
+
+class DumpRenderTreeChrome;
+
+extern OwnPtr<DumpRenderTreeChrome> browser;
+extern Evas_Object* topLoadingFrame;
+extern bool waitForPolicy;
+extern Ecore_Timer* waitToDumpWatchdog;
+
+#endif /* DumpRenderTreeEfl_h */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to