Title: [112732] trunk/Source/WebKit/efl
- Revision
- 112732
- Author
- [email protected]
- Date
- 2012-03-30 15:24:51 -0700 (Fri, 30 Mar 2012)
Log Message
[EFL] Correct <wtf/*.h> include paths.
https://bugs.webkit.org/show_bug.cgi?id=82741
Reviewed by Andreas Kling.
Modify the #include declarations for several EFL-related files
so that the wtf types are included using the full path.
* ewk/ewk_frame.cpp:
* ewk/ewk_tiled_backing_store.cpp:
(_Ewk_Tiled_Backing_Store_Item):
* ewk/ewk_tiled_matrix.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebKit/efl/ChangeLog (112731 => 112732)
--- trunk/Source/WebKit/efl/ChangeLog 2012-03-30 22:23:26 UTC (rev 112731)
+++ trunk/Source/WebKit/efl/ChangeLog 2012-03-30 22:24:51 UTC (rev 112732)
@@ -1,3 +1,18 @@
+2012-03-30 Patrick Gansterer <[email protected]>
+
+ [EFL] Correct <wtf/*.h> include paths.
+ https://bugs.webkit.org/show_bug.cgi?id=82741
+
+ Reviewed by Andreas Kling.
+
+ Modify the #include declarations for several EFL-related files
+ so that the wtf types are included using the full path.
+
+ * ewk/ewk_frame.cpp:
+ * ewk/ewk_tiled_backing_store.cpp:
+ (_Ewk_Tiled_Backing_Store_Item):
+ * ewk/ewk_tiled_matrix.cpp:
+
2012-03-30 Jesus Sanchez-Palencia <[email protected]>
Add a "preview" state to Page Visibility API implementation
Modified: trunk/Source/WebKit/efl/ewk/ewk_frame.cpp (112731 => 112732)
--- trunk/Source/WebKit/efl/ewk/ewk_frame.cpp 2012-03-30 22:23:26 UTC (rev 112731)
+++ trunk/Source/WebKit/efl/ewk/ewk_frame.cpp 2012-03-30 22:24:51 UTC (rev 112732)
@@ -24,7 +24,6 @@
#include "config.h"
#include "ewk_frame.h"
-#include "Assertions.h"
#include "DocumentLoader.h"
#include "DocumentMarkerController.h"
#include "EventHandler.h"
@@ -46,7 +45,6 @@
#include "PlatformTouchEvent.h"
#include "PlatformWheelEvent.h"
#include "ProgressTracker.h"
-#include "RefPtr.h"
#include "ResourceRequest.h"
#include "ScriptValue.h"
#include "SharedBuffer.h"
@@ -57,6 +55,8 @@
#include <Eina.h>
#include <Evas.h>
#include <eina_safety_checks.h>
+#include <wtf/Assertions.h>
+#include <wtf/RefPtr.h>
#include <wtf/text/CString.h>
static const char EWK_FRAME_TYPE_STR[] = "EWK_Frame";
Modified: trunk/Source/WebKit/efl/ewk/ewk_tiled_backing_store.cpp (112731 => 112732)
--- trunk/Source/WebKit/efl/ewk/ewk_tiled_backing_store.cpp 2012-03-30 22:23:26 UTC (rev 112731)
+++ trunk/Source/WebKit/efl/ewk/ewk_tiled_backing_store.cpp 2012-03-30 22:24:51 UTC (rev 112732)
@@ -26,14 +26,14 @@
#include "ewk_tiled_private.h"
#include <Ecore.h>
#include <Eina.h>
-#include <OwnPtr.h>
-#include <PassOwnPtr.h>
#include <algorithm>
#include <errno.h>
#include <math.h>
#include <stdio.h> // XXX REMOVE ME LATER
#include <stdlib.h>
#include <string.h>
+#include <wtf/OwnPtr.h>
+#include <wtf/PassOwnPtr.h>
#define IDX(column, row, rowspan) (column + (row * rowspan))
Modified: trunk/Source/WebKit/efl/ewk/ewk_tiled_matrix.cpp (112731 => 112732)
--- trunk/Source/WebKit/efl/ewk/ewk_tiled_matrix.cpp 2012-03-30 22:23:26 UTC (rev 112731)
+++ trunk/Source/WebKit/efl/ewk/ewk_tiled_matrix.cpp 2012-03-30 22:24:51 UTC (rev 112732)
@@ -25,14 +25,14 @@
#include "ewk_tiled_backing_store.h"
#include "ewk_tiled_private.h"
#include <Eina.h>
-#include <OwnPtr.h>
-#include <PassOwnPtr.h>
#include <errno.h>
#include <inttypes.h>
#include <math.h>
#include <stdio.h> // XXX remove me later
#include <stdlib.h>
#include <string.h>
+#include <wtf/OwnPtr.h>
+#include <wtf/PassOwnPtr.h>
struct _Ewk_Tile_Matrix_Entry {
EINA_INLIST;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes