Title: [117737] trunk/Source/WebKit
Revision
117737
Author
[email protected]
Date
2012-05-21 00:11:00 -0700 (Mon, 21 May 2012)

Log Message

[EFL] Minor style fixes in web intents code are needed
https://bugs.webkit.org/show_bug.cgi?id=86986

Patch by Christophe Dumez <[email protected]> on 2012-05-21
Reviewed by Adam Barth.

Source/WebKit:

Fix minor ordering issues in CMake files.

* CMakeLists.txt:
* PlatformEfl.cmake:

Source/WebKit/efl:

* ewk/EWebKit.h: Add new intent headers.
* ewk/ewk_frame.h: Add missing underscores to EwkIntentRequest type.

Modified Paths

Diff

Modified: trunk/Source/WebKit/CMakeLists.txt (117736 => 117737)


--- trunk/Source/WebKit/CMakeLists.txt	2012-05-21 07:08:21 UTC (rev 117736)
+++ trunk/Source/WebKit/CMakeLists.txt	2012-05-21 07:11:00 UTC (rev 117737)
@@ -1,8 +1,8 @@
 SET(WebKit_INCLUDE_DIRECTORIES
     "${WEBKIT_DIR}"
     "${WEBCORE_DIR}"
+    "${WEBCORE_DIR}/Modules/intents"
     "${WEBCORE_DIR}/Modules/webdatabase"
-    "${WEBCORE_DIR}/Modules/intents"
     "${WEBCORE_DIR}/accessibility"
     "${WEBCORE_DIR}/bindings/js"
     "${WEBCORE_DIR}/bindings"

Modified: trunk/Source/WebKit/ChangeLog (117736 => 117737)


--- trunk/Source/WebKit/ChangeLog	2012-05-21 07:08:21 UTC (rev 117736)
+++ trunk/Source/WebKit/ChangeLog	2012-05-21 07:11:00 UTC (rev 117737)
@@ -1,3 +1,15 @@
+2012-05-21  Christophe Dumez  <[email protected]>
+
+        [EFL] Minor style fixes in web intents code are needed
+        https://bugs.webkit.org/show_bug.cgi?id=86986
+
+        Reviewed by Adam Barth.
+
+        Fix minor ordering issues in CMake files.
+
+        * CMakeLists.txt:
+        * PlatformEfl.cmake:
+
 2012-05-18  Christophe Dumez  <[email protected]>
 
         [EFL] Add simple implementation of Web Intents

Modified: trunk/Source/WebKit/PlatformEfl.cmake (117736 => 117737)


--- trunk/Source/WebKit/PlatformEfl.cmake	2012-05-21 07:08:21 UTC (rev 117736)
+++ trunk/Source/WebKit/PlatformEfl.cmake	2012-05-21 07:11:00 UTC (rev 117737)
@@ -106,6 +106,8 @@
     efl/ewk/ewk_cookies.cpp
     efl/ewk/ewk_frame.cpp
     efl/ewk/ewk_history.cpp
+    efl/ewk/ewk_intent.cpp
+    efl/ewk/ewk_intent_request.cpp
     efl/ewk/ewk_js.cpp
     efl/ewk/ewk_main.cpp
     efl/ewk/ewk_network.cpp
@@ -119,8 +121,6 @@
     efl/ewk/ewk_view.cpp
     efl/ewk/ewk_view_single.cpp
     efl/ewk/ewk_view_tiled.cpp
-    efl/ewk/ewk_intent.cpp
-    efl/ewk/ewk_intent_request.cpp
     efl/ewk/ewk_window_features.cpp
     efl/ewk/ewk_web_database.cpp
 )
@@ -262,6 +262,8 @@
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_cookies.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_frame.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_history.h
+    ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_intent.h
+    ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_intent_request.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_js.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_main.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_network.h
@@ -269,8 +271,6 @@
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_security_policy.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_settings.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_view.h
-    ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_intent.h
-    ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_intent_request.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_window_features.h
     ${CMAKE_CURRENT_SOURCE_DIR}/efl/ewk/ewk_web_database.h
 )

Modified: trunk/Source/WebKit/efl/ChangeLog (117736 => 117737)


--- trunk/Source/WebKit/efl/ChangeLog	2012-05-21 07:08:21 UTC (rev 117736)
+++ trunk/Source/WebKit/efl/ChangeLog	2012-05-21 07:11:00 UTC (rev 117737)
@@ -1,3 +1,13 @@
+2012-05-21  Christophe Dumez  <[email protected]>
+
+        [EFL] Minor style fixes in web intents code are needed
+        https://bugs.webkit.org/show_bug.cgi?id=86986
+
+        Reviewed by Adam Barth.
+
+        * ewk/EWebKit.h: Add new intent headers.
+        * ewk/ewk_frame.h: Add missing underscores to EwkIntentRequest type.
+
 2012-05-20  Mikhail Pozdnyakov  <[email protected]>
 
         [EFL] ewk_view navigation_policy_decision() input parameters should be extended

Modified: trunk/Source/WebKit/efl/ewk/EWebKit.h (117736 => 117737)


--- trunk/Source/WebKit/efl/ewk/EWebKit.h	2012-05-21 07:08:21 UTC (rev 117736)
+++ trunk/Source/WebKit/efl/ewk/EWebKit.h	2012-05-21 07:11:00 UTC (rev 117737)
@@ -34,6 +34,8 @@
 #include "ewk_cookies.h"
 #include "ewk_frame.h"
 #include "ewk_history.h"
+#include "ewk_intent.h"
+#include "ewk_intent_request.h"
 #include "ewk_js.h"
 #include "ewk_main.h"
 #include "ewk_network.h"

Modified: trunk/Source/WebKit/efl/ewk/ewk_frame.h (117736 => 117737)


--- trunk/Source/WebKit/efl/ewk/ewk_frame.h	2012-05-21 07:08:21 UTC (rev 117736)
+++ trunk/Source/WebKit/efl/ewk/ewk_frame.h	2012-05-21 07:11:00 UTC (rev 117737)
@@ -40,7 +40,7 @@
  *  - "editorclient,contents,changed", void: reports that editor client's
  *    contents were changed
  *  - "icon,changed", void: frame favicon changed.
- *  - "intent,new", EwkIntentRequest*: reports new intent.
+ *  - "intent,new", Ewk_Intent_Request*: reports new intent.
  *  - "load,committed", void: reports load committed.
  *  - "load,document,finished", void: frame finished loading the document.
  *  - "load,error", const Ewk_Frame_Load_Error*: reports load failed
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to