[EFL] Revert pointer operator coding style in ewk
authordemarchi@webkit.org <demarchi@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 19:17:57 +0000 (19:17 +0000)
committerdemarchi@webkit.org <demarchi@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 19:17:57 +0000 (19:17 +0000)
https://bugs.webkit.org/show_bug.cgi?id=68231

Reviewed by Antonio Gomes.

The WebKit coding style mandates that "(...) in C++ code - Both pointer
types and reference types should be written with no space between the
type name and the * or &.". Until now EFL port was using the
coding-style of the library for platform  code instead of WebKit's.

We are now trying to be more compliant with WebKit coding-style so it's
easier for other reviewers to review EFL code. The first step in this
direction is to move the '*' and '&' of pointers and references to the
right place.

This patch was generated with 'uncrustify' with the configure file
attached to the respective but report. There was one fix that had to be
manually made in order to keep the 'check-webkit-style' happy: a
function definition with a meaningless name. Other functions like this
exist but they will be fixed by a later patch.

Some nice side-effects of using uncrustify:

- Whitespace cleanup on comments
- Function parameters are aligned to the open parenthesis
- Remove tab characters

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95659 268f45cc-cd09-0410-ab3c-d52691b4dbfc

28 files changed:
Source/WebKit/efl/ChangeLog
Source/WebKit/efl/WebCoreSupport/ChromeClientEfl.cpp
Source/WebKit/efl/WebCoreSupport/EditorClientEfl.cpp
Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp
Source/WebKit/efl/WebCoreSupport/IconDatabaseClientEfl.cpp
Source/WebKit/efl/WebCoreSupport/NotificationPresenterClientEfl.cpp
Source/WebKit/efl/ewk/ewk_auth.cpp
Source/WebKit/efl/ewk/ewk_auth_soup.cpp
Source/WebKit/efl/ewk/ewk_contextmenu.cpp
Source/WebKit/efl/ewk/ewk_cookies.cpp
Source/WebKit/efl/ewk/ewk_frame.cpp
Source/WebKit/efl/ewk/ewk_history.cpp
Source/WebKit/efl/ewk/ewk_js.cpp
Source/WebKit/efl/ewk/ewk_main.cpp
Source/WebKit/efl/ewk/ewk_network.cpp
Source/WebKit/efl/ewk/ewk_private.h
Source/WebKit/efl/ewk/ewk_protocol_handler_soup.h
Source/WebKit/efl/ewk/ewk_settings.cpp
Source/WebKit/efl/ewk/ewk_tiled_backing_store.h
Source/WebKit/efl/ewk/ewk_tiled_matrix.h
Source/WebKit/efl/ewk/ewk_tiled_model.h
Source/WebKit/efl/ewk/ewk_tiled_private.h
Source/WebKit/efl/ewk/ewk_util.cpp
Source/WebKit/efl/ewk/ewk_util.h
Source/WebKit/efl/ewk/ewk_view.cpp
Source/WebKit/efl/ewk/ewk_view_single.cpp
Source/WebKit/efl/ewk/ewk_view_tiled.cpp
Source/WebKit/efl/ewk/ewk_window_features.cpp

index 8d1ce46..ebbeaf1 100755 (executable)
@@ -1,5 +1,34 @@
 2011-09-21  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
 
+        [EFL] Revert pointer operator coding style in ewk
+        https://bugs.webkit.org/show_bug.cgi?id=68231
+
+        Reviewed by Antonio Gomes.
+
+        The WebKit coding style mandates that "(...) in C++ code - Both pointer
+        types and reference types should be written with no space between the
+        type name and the * or &.". Until now EFL port was using the
+        coding-style of the library for platform  code instead of WebKit's.
+
+        We are now trying to be more compliant with WebKit coding-style so it's
+        easier for other reviewers to review EFL code. The first step in this
+        direction is to move the '*' and '&' of pointers and references to the
+        right place.
+
+        This patch was generated with 'uncrustify' with the configure file
+        attached to the respective but report. There was one fix that had to be
+        manually made in order to keep the 'check-webkit-style' happy: a
+        function definition with a meaningless name. Other functions like this
+        exist but they will be fixed by a later patch.
+
+        Some nice side-effects of using uncrustify:
+
+        - Whitespace cleanup on comments
+        - Function parameters are aligned to the open parenthesis
+        - Remove tab characters
+
+2011-09-21  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
+
         [EFL] Don't try to free user-provided list
         https://bugs.webkit.org/show_bug.cgi?id=68356
 
index a30a8b1..2435956 100644 (file)
@@ -402,8 +402,8 @@ void ChromeClientEfl::exceededDatabaseQuota(Frame* frame, const String& database
 
     DatabaseDetails details = DatabaseTracker::tracker().detailsForNameAndOrigin(databaseName, origin);
     quota = ewk_view_exceeded_database_quota(m_view,
-            kit(frame), databaseName.utf8().data(),
-            details.currentUsage(), details.expectedUsage());
+                                             kit(frame), databaseName.utf8().data(),
+                                             details.currentUsage(), details.expectedUsage());
 
     /* if client did not set quota, and database is being created now, the
      * default quota is applied
@@ -438,7 +438,7 @@ void ChromeClientEfl::runOpenPanel(Frame* frame, PassRefPtr<FileChooser> prpFile
         return;
 
     EINA_LIST_FREE(selectedFilenames, filename) {
-        filenames.append((char *)filename);
+        filenames.append((char*)filename);
         free(filename);
     }
 
index 6a4ac5e..ffcb706 100644 (file)
@@ -385,27 +385,27 @@ bool EditorClientEfl::handleEditingKeyboardEvent(KeyboardEvent* event)
         switch (keyEvent->windowsVirtualKeyCode()) {
         case VK_LEFT:
             frame->selection()->modify(keyEvent->shiftKey() ? FrameSelection::AlterationExtend : FrameSelection::AlterationMove,
-                    DirectionLeft,
-                    keyEvent->ctrlKey() ? WordGranularity : CharacterGranularity,
-                    UserTriggered);
+                                       DirectionLeft,
+                                       keyEvent->ctrlKey() ? WordGranularity : CharacterGranularity,
+                                       UserTriggered);
             return true;
         case VK_RIGHT:
             frame->selection()->modify(keyEvent->shiftKey() ? FrameSelection::AlterationExtend : FrameSelection::AlterationMove,
-                    DirectionRight,
-                    keyEvent->ctrlKey() ? WordGranularity : CharacterGranularity,
-                    UserTriggered);
+                                       DirectionRight,
+                                       keyEvent->ctrlKey() ? WordGranularity : CharacterGranularity,
+                                       UserTriggered);
             return true;
         case VK_UP:
             frame->selection()->modify(keyEvent->shiftKey() ? FrameSelection::AlterationExtend : FrameSelection::AlterationMove,
-                    DirectionBackward,
-                    keyEvent->ctrlKey() ? ParagraphGranularity : LineGranularity,
-                    UserTriggered);
+                                       DirectionBackward,
+                                       keyEvent->ctrlKey() ? ParagraphGranularity : LineGranularity,
+                                       UserTriggered);
             return true;
         case VK_DOWN:
             frame->selection()->modify(keyEvent->shiftKey() ? FrameSelection::AlterationExtend : FrameSelection::AlterationMove,
-                    DirectionForward,
-                    keyEvent->ctrlKey() ? ParagraphGranularity : LineGranularity,
-                    UserTriggered);
+                                       DirectionForward,
+                                       keyEvent->ctrlKey() ? ParagraphGranularity : LineGranularity,
+                                       UserTriggered);
             return true;
         }
     }
index d61423e..b2cccaa 100644 (file)
@@ -68,7 +68,7 @@ using namespace WebCore;
 
 namespace WebCore {
 
-FrameLoaderClientEfl::FrameLoaderClientEfl(Evas_Object *view)
+FrameLoaderClientEfl::FrameLoaderClientEfl(Evas_Objectview)
     : m_view(view)
     , m_frame(0)
     , m_userAgent("")
@@ -107,7 +107,7 @@ static String composeUserAgent()
     return makeString("Mozilla/5.0 (", agentOS(), ") AppleWebKit/", webKitVersion, " (KHTML, like Gecko) Safari/", webKitVersion);
 }
 
-void FrameLoaderClientEfl::setCustomUserAgent(const String &agent)
+void FrameLoaderClientEfl::setCustomUserAgent(const Stringagent)
 {
     m_customUserAgent = agent;
 }
@@ -377,7 +377,7 @@ void FrameLoaderClientEfl::redirectDataToPlugin(Widget* pluginWidget)
 }
 
 PassRefPtr<Widget> FrameLoaderClientEfl::createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const KURL& baseURL,
-                                                  const Vector<String>& paramNames, const Vector<String>& paramValues)
+                                                                const Vector<String>& paramNames, const Vector<String>& paramValues)
 {
     notImplemented();
     return 0;
@@ -678,7 +678,7 @@ void FrameLoaderClientEfl::willChangeTitle(DocumentLoader*)
     // no need for, dispatchDidReceiveTitle is the right callback
 }
 
-void FrameLoaderClientEfl::didChangeTitle(DocumentLoader *l)
+void FrameLoaderClientEfl::didChangeTitle(DocumentLoader*)
 {
     // no need for, dispatchDidReceiveTitle is the right callback
 }
index 64e043e..c9e4328 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
  *  Copyright (C) 2011 Samsung Electronics
  *
  *  This library is free software; you can redistribute it and/or
index b95d0a8..15133f5 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
  *  Copyright (C) 2011 Samsung Electronics
  *
  *  This library is free software; you can redistribute it and/or
index 2a6b4a7..a4cb9e6 100644 (file)
@@ -31,7 +31,7 @@ void ewk_auth_show_dialog_callback_set(Ewk_Auth_Show_Dialog_Callback callback)
 #endif
 }
 
-void ewk_auth_credentials_set(char *username, char *password, void *data)
+void ewk_auth_credentials_set(char* username, char* password, void* data)
 {
 #if USE(SOUP)
     ewk_auth_soup_credentials_set(username, password, data);
index 390e8bd..09f3d0d 100644 (file)
@@ -40,9 +40,9 @@ extern "C" {
  */
 
 typedef struct _Ewk_Auth_Data {
-    SoupMessage *msg;
-    SoupAuth *auth;
-    SoupSession *session;
+    SoupMessagemsg;
+    SoupAuthauth;
+    SoupSessionsession;
 } Ewk_Auth_Data;
 
 static Ewk_Auth_Show_Dialog_Callback ewk_auth_show_dialog_callback = 0;
@@ -55,15 +55,15 @@ static void free_auth_data(Ewk_Auth_Data*);
 G_DEFINE_TYPE_WITH_CODE(Ewk_Soup_Auth_Dialog, ewk_auth_soup_dialog, G_TYPE_OBJECT,
                         G_IMPLEMENT_INTERFACE(SOUP_TYPE_SESSION_FEATURE, ewk_auth_soup_dialog_session_feature_init))
 
-static void ewk_auth_soup_dialog_class_init(Ewk_Soup_Auth_DialogClass *klass)
+static void ewk_auth_soup_dialog_class_init(Ewk_Soup_Auth_DialogClassklass)
 {
 }
 
-static void ewk_auth_soup_dialog_init(Ewk_Soup_Auth_Dialog *instance)
+static void ewk_auth_soup_dialog_init(Ewk_Soup_Auth_Dialoginstance)
 {
 }
 
-static void ewk_auth_soup_dialog_session_feature_init(SoupSessionFeatureInterface *feature_interface, gpointer interface_data)
+static void ewk_auth_soup_dialog_session_feature_init(SoupSessionFeatureInterfacefeature_interface, gpointer interface_data)
 {
     feature_interface->attach = attach;
     feature_interface->detach = detach;
@@ -74,27 +74,27 @@ void ewk_auth_soup_show_dialog_callback_set(Ewk_Auth_Show_Dialog_Callback callba
     ewk_auth_show_dialog_callback = callback;
 }
 
-void ewk_auth_soup_credentials_set(const char *username, const char *password, void *data)
+void ewk_auth_soup_credentials_set(const char* username, const char* password, void* data)
 {
     if (!data)
         return;
 
-    Ewk_Auth_Data *auth_data = (Ewk_Auth_Data *)data;
+    Ewk_Auth_Data* auth_data = (Ewk_Auth_Data*)data;
     soup_auth_authenticate(auth_data->auth, username, password);
     soup_session_unpause_message(auth_data->session, auth_data->msg);
     free_auth_data(auth_data);
 }
 
-static void session_authenticate(SoupSession *session, SoupMessage *msg, SoupAuth *auth, gboolean retrying, gpointer /* user_data */)
+static void session_authenticate(SoupSession* session, SoupMessage* msg, SoupAuth* auth, gboolean retrying, gpointer /* user_data */)
 {
-    SoupURI *uri;
-    Ewk_Auth_Data *auth_data;
-    const char *realm;
+    SoupURIuri;
+    Ewk_Auth_Dataauth_data;
+    const charrealm;
 
     if (!ewk_auth_show_dialog_callback)
         return;
 
-    auth_data = (Ewk_Auth_Data *)calloc(1, sizeof(Ewk_Auth_Data));
+    auth_data = (Ewk_Auth_Data*)calloc(1, sizeof(Ewk_Auth_Data));
 
     if (!auth_data) {
         CRITICAL("could not allocate Ewk_Auth_Data");
@@ -118,7 +118,7 @@ static void session_authenticate(SoupSession *session, SoupMessage *msg, SoupAut
     ewk_auth_show_dialog_callback(realm, soup_uri_to_string(uri, TRUE), auth_data);
 }
 
-static void free_auth_data(Ewk_Auth_Data *auth_data)
+static void free_auth_data(Ewk_Auth_Dataauth_data)
 {
     g_object_unref(auth_data->msg);
     g_object_unref(auth_data->session);
@@ -126,14 +126,14 @@ static void free_auth_data(Ewk_Auth_Data *auth_data)
     free(auth_data);
 }
 
-static void attach(SoupSessionFeature *manager, SoupSession *session)
+static void attach(SoupSessionFeature* manager, SoupSession* session)
 {
     g_signal_connect(session, "authenticate", G_CALLBACK(session_authenticate), manager);
 }
 
-static void detach(SoupSessionFeature *manager, SoupSession *session)
+static void detach(SoupSessionFeature* manager, SoupSession* session)
 {
-    g_signal_handlers_disconnect_by_func(session, (void *)session_authenticate, manager);
+    g_signal_handlers_disconnect_by_func(session, (void*)session_authenticate, manager);
 }
 
 #ifdef __cplusplus
index 6faffc8..857926b 100644 (file)
 struct _Ewk_Context_Menu {
     unsigned int __ref; /**< the reference count of the object */
 #if ENABLE(CONTEXT_MENUS)
-    WebCore::ContextMenuController *controller; /**< the WebCore's object which is responsible for the context menu */
+    WebCore::ContextMenuControllercontroller; /**< the WebCore's object which is responsible for the context menu */
 #endif
-    Evas_Object *view; /**< the view object */
+    Evas_Objectview; /**< the view object */
 
-    Eina_List *items; /**< the list of items */
+    Eina_Listitems; /**< the list of items */
 };
 
 /**
@@ -53,23 +53,23 @@ struct _Ewk_Context_Menu_Item {
     Ewk_Context_Menu_Item_Type type; /**< contains the type of the item */
     Ewk_Context_Menu_Action action; /**< contains the action of the item */
 
-    const char *title; /**< contains the title of the item */
-    Ewk_Context_Menu *submenu; /**< contains the pointer to the submenu of the item */
+    const chartitle; /**< contains the title of the item */
+    Ewk_Context_Menusubmenu; /**< contains the pointer to the submenu of the item */
 
-    Eina_Bool checked:1;
-    Eina_Bool enabled:1;
+    Eina_Bool checked : 1;
+    Eina_Bool enabled : 1;
 };
 
-void ewk_context_menu_ref(Ewk_Context_Menu *menu)
+void ewk_context_menu_ref(Ewk_Context_Menumenu)
 {
     EINA_SAFETY_ON_NULL_RETURN(menu);
     menu->__ref++;
 }
 
-void ewk_context_menu_unref(Ewk_Context_Menu *menu)
+void ewk_context_menu_unref(Ewk_Context_Menumenu)
 {
     EINA_SAFETY_ON_NULL_RETURN(menu);
-    void *item;
+    voiditem;
 
     if (--menu->__ref)
         return;
@@ -80,30 +80,30 @@ void ewk_context_menu_unref(Ewk_Context_Menu *menu)
     free(menu);
 }
 
-Eina_Bool ewk_context_menu_destroy(Ewk_Context_Menu *menu)
+Eina_Bool ewk_context_menu_destroy(Ewk_Context_Menumenu)
 {
 #if ENABLE(CONTEXT_MENUS)
     EINA_SAFETY_ON_NULL_RETURN_VAL(menu, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(menu->controller, EINA_FALSE);
     menu->controller->clearContextMenu();
     return EINA_TRUE;
-#else 
+#else
     return EINA_FALSE;
 #endif
 }
 
-const Eina_List *ewk_context_menu_item_list_get(const Ewk_Context_Menu *o)
+const Eina_List* ewk_context_menu_item_list_get(const Ewk_Context_Menu* o)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, 0);
 
     return o->items;
 }
 
-Ewk_Context_Menu_Item *ewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type,
-        Ewk_Context_Menu_Action action, Ewk_Context_Menu *submenu,
-        const char *title, Eina_Bool checked, Eina_Bool enabled)
+Ewk_Context_Menu_Itemewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type,
+                                                 Ewk_Context_Menu_Action action, Ewk_Context_Menu* submenu,
+                                                 const char* title, Eina_Bool checked, Eina_Bool enabled)
 {
-    Ewk_Context_Menu_Item *item = (Ewk_Context_Menu_Item *) malloc(sizeof(*item));
+    Ewk_Context_Menu_Item* item = (Ewk_Context_Menu_Item*) malloc(sizeof(*item));
     if (!item)
         return 0;
 
@@ -117,7 +117,7 @@ Ewk_Context_Menu_Item *ewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type
     return item;
 }
 
-Eina_Bool ewk_context_menu_item_select(Ewk_Context_Menu *menu, Ewk_Context_Menu_Item *item)
+Eina_Bool ewk_context_menu_item_select(Ewk_Context_Menu* menu, Ewk_Context_Menu_Item* item)
 {
 #if ENABLE(CONTEXT_MENUS)
     EINA_SAFETY_ON_NULL_RETURN_VAL(menu, EINA_FALSE);
@@ -134,7 +134,7 @@ Eina_Bool ewk_context_menu_item_select(Ewk_Context_Menu *menu, Ewk_Context_Menu_
 #endif
 }
 
-void ewk_context_menu_item_free(Ewk_Context_Menu_Item *item)
+void ewk_context_menu_item_free(Ewk_Context_Menu_Itemitem)
 {
     EINA_SAFETY_ON_NULL_RETURN(item);
 
@@ -142,65 +142,65 @@ void ewk_context_menu_item_free(Ewk_Context_Menu_Item *item)
     free(item);
 }
 
-Ewk_Context_Menu_Item_Type ewk_context_menu_item_type_get(const Ewk_Context_Menu_Item *o)
+Ewk_Context_Menu_Item_Type ewk_context_menu_item_type_get(const Ewk_Context_Menu_Itemo)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EWK_ACTION_TYPE);
     return o->type;
 }
 
-Eina_Bool ewk_context_menu_item_type_set(Ewk_Context_Menu_Item *o, Ewk_Context_Menu_Item_Type type)
+Eina_Bool ewk_context_menu_item_type_set(Ewk_Context_Menu_Itemo, Ewk_Context_Menu_Item_Type type)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE);
     o->type = type;
     return EINA_TRUE;
 }
 
-Ewk_Context_Menu_Action ewk_context_menu_item_action_get(const Ewk_Context_Menu_Item *o)
+Ewk_Context_Menu_Action ewk_context_menu_item_action_get(const Ewk_Context_Menu_Itemo)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EWK_CONTEXT_MENU_ITEM_TAG_NO_ACTION);
     return o->action;
 }
 
-Eina_Bool ewk_context_menu_item_action_set(Ewk_Context_Menu_Item *o, Ewk_Context_Menu_Action action)
+Eina_Bool ewk_context_menu_item_action_set(Ewk_Context_Menu_Itemo, Ewk_Context_Menu_Action action)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE);
     o->action = action;
     return EINA_TRUE;
 }
 
-const char *ewk_context_menu_item_title_get(const Ewk_Context_Menu_Item *o)
+const char* ewk_context_menu_item_title_get(const Ewk_Context_Menu_Item* o)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, 0);
     return o->title;
 }
 
-const char *ewk_context_menu_item_title_set(Ewk_Context_Menu_Item *o, const char *title)
+const char* ewk_context_menu_item_title_set(Ewk_Context_Menu_Item* o, const char* title)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, 0);
     eina_stringshare_replace(&o->title, title);
     return o->title;
 }
 
-Eina_Bool ewk_context_menu_item_checked_get(const Ewk_Context_Menu_Item *o)
+Eina_Bool ewk_context_menu_item_checked_get(const Ewk_Context_Menu_Itemo)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE);
     return o->checked;
 }
 
-Eina_Bool ewk_context_menu_item_checked_set(Ewk_Context_Menu_Item *o, Eina_Bool checked)
+Eina_Bool ewk_context_menu_item_checked_set(Ewk_Context_Menu_Itemo, Eina_Bool checked)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE);
     o->checked = checked;
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_context_menu_item_enabled_get(const Ewk_Context_Menu_Item *o)
+Eina_Bool ewk_context_menu_item_enabled_get(const Ewk_Context_Menu_Itemo)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE);
     return o->enabled;
 }
 
-Eina_Bool ewk_context_menu_item_enabled_set(Ewk_Context_Menu_Item *o, Eina_Bool enabled)
+Eina_Bool ewk_context_menu_item_enabled_set(Ewk_Context_Menu_Itemo, Eina_Bool enabled)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE);
     o->enabled = enabled;
@@ -222,7 +222,7 @@ Eina_Bool ewk_context_menu_item_enabled_set(Ewk_Context_Menu_Item *o, Eina_Bool
  *
  * @note emits a signal "contextmenu,new"
  */
-Ewk_Context_Menu *ewk_context_menu_new(Evas_Object *view, WebCore::ContextMenuController *controller)
+Ewk_Context_Menu* ewk_context_menu_new(Evas_Object* view, WebCore::ContextMenuController* controller)
 {
     Ewk_Context_Menu* menu;
     EINA_SAFETY_ON_NULL_RETURN_VAL(view, 0);
@@ -256,7 +256,7 @@ Ewk_Context_Menu *ewk_context_menu_new(Evas_Object *view, WebCore::ContextMenuCo
  * @see ewk_context_menu_unref
  * @see ewk_context_menu_destroy
  */
-Eina_Bool ewk_context_menu_free(Ewk_Context_Menu *o)
+Eina_Bool ewk_context_menu_free(Ewk_Context_Menuo)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE);
     evas_object_smart_callback_call(o->view, "contextmenu,free", o);
@@ -275,14 +275,14 @@ Eina_Bool ewk_context_menu_free(Ewk_Context_Menu *o)
  *
  * @see ewk_context_menu_item_new
  */
-void ewk_context_menu_item_append(Ewk_Context_Menu *o, WebCore::ContextMenuItem &core)
+void ewk_context_menu_item_append(Ewk_Context_Menu* o, WebCore::ContextMenuItem& core)
 {
     Ewk_Context_Menu_Item_Type type = static_cast<Ewk_Context_Menu_Item_Type>(core.type());
     Ewk_Context_Menu_Action action = static_cast<Ewk_Context_Menu_Action>(core.action());
 
-    Ewk_Context_Menu_Item *menu_item = ewk_context_menu_item_new
-        (type, action, 0, core.title().utf8().data(), core.checked(),
-         core.enabled());
+    Ewk_Context_Menu_Itemmenu_item = ewk_context_menu_item_new
+                                           (type, action, 0, core.title().utf8().data(), core.checked(),
+                                           core.enabled());
     EINA_SAFETY_ON_NULL_RETURN(menu_item);
 
     o->items = eina_list_append(o->items, menu_item);
@@ -301,7 +301,7 @@ void ewk_context_menu_item_append(Ewk_Context_Menu *o, WebCore::ContextMenuItem
  *
  * @see ewk_context_menu_item_list_get
  */
-Ewk_Context_Menu *ewk_context_menu_custom_get(const Ewk_Context_Menu *o)
+Ewk_Context_Menu* ewk_context_menu_custom_get(const Ewk_Context_Menu* o)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(o, 0);
 
@@ -316,7 +316,7 @@ Ewk_Context_Menu *ewk_context_menu_custom_get(const Ewk_Context_Menu *o)
  *
  * @param o the context menu object
  */
-void ewk_context_menu_show(const Ewk_Context_Menu *o)
+void ewk_context_menu_show(const Ewk_Context_Menuo)
 {
     EINA_SAFETY_ON_NULL_RETURN(o);
 
index 79d553d..aa9f2c8 100644 (file)
 #include <wtf/text/CString.h>
 
 
-Eina_Bool ewk_cookies_file_set(const char *filename)
+Eina_Bool ewk_cookies_file_set(const charfilename)
 {
 #if USE(SOUP)
-    SoupCookieJar *cookieJar = 0;
+    SoupCookieJarcookieJar = 0;
     if (filename)
         cookieJar = soup_cookie_jar_text_new(filename, FALSE);
     else
@@ -50,8 +50,8 @@ Eina_Bool ewk_cookies_file_set(const char *filename)
 
     soup_cookie_jar_set_accept_policy(cookieJar, SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY);
 
-    SoupSession *session = WebCore::ResourceHandle::defaultSession();
-    SoupSessionFeature *oldjar = soup_session_get_feature(session, SOUP_TYPE_COOKIE_JAR);
+    SoupSessionsession = WebCore::ResourceHandle::defaultSession();
+    SoupSessionFeatureoldjar = soup_session_get_feature(session, SOUP_TYPE_COOKIE_JAR);
     if (oldjar)
         soup_session_remove_feature(session, oldjar);
 
@@ -67,30 +67,30 @@ Eina_Bool ewk_cookies_file_set(const char *filename)
 void ewk_cookies_clear(void)
 {
 #if USE(SOUP)
-    GSList *l;
-    GSList *p;
-    SoupCookieJar *cookieJar = WebCore::defaultCookieJar();
+    GSListl;
+    GSListp;
+    SoupCookieJarcookieJar = WebCore::defaultCookieJar();
 
     l = soup_cookie_jar_all_cookies(cookieJar);
     for (p = l; p; p = p->next)
-        soup_cookie_jar_delete_cookie(cookieJar, (SoupCookie *)p->data);
+        soup_cookie_jar_delete_cookie(cookieJar, (SoupCookie*)p->data);
 
     soup_cookies_free(l);
 #endif
 }
 
-Eina_List *ewk_cookies_get_all(void)
+Eina_Listewk_cookies_get_all(void)
 {
-    Eina_List *el = 0;
+    Eina_Listel = 0;
 #if USE(SOUP)
-    GSList *l;
-    GSList *p;
-    SoupCookieJar *cookieJar = WebCore::defaultCookieJar();
+    GSListl;
+    GSListp;
+    SoupCookieJarcookieJar = WebCore::defaultCookieJar();
 
     l = soup_cookie_jar_all_cookies(cookieJar);
     for (p = l; p; p = p->next) {
-        SoupCookie *cookie = static_cast<SoupCookie*>(p->data);
-        Ewk_Cookie *c = static_cast<Ewk_Cookie*>(malloc(sizeof(*c)));
+        SoupCookiecookie = static_cast<SoupCookie*>(p->data);
+        Ewk_Cookiec = static_cast<Ewk_Cookie*>(malloc(sizeof(*c)));
         c->name = strdup(cookie->name);
         c->value = strdup(cookie->value);
         c->domain = strdup(cookie->domain);
@@ -106,19 +106,19 @@ Eina_List *ewk_cookies_get_all(void)
     return el;
 }
 
-void ewk_cookies_cookie_del(Ewk_Cookie *cookie)
+void ewk_cookies_cookie_del(Ewk_Cookiecookie)
 {
 #if USE(SOUP)
     EINA_SAFETY_ON_NULL_RETURN(cookie);
     GSList* l;
     GSList* p;
-    SoupCookieJar *cookieJar = WebCore::defaultCookieJar();
-    SoupCookie *c1 = soup_cookie_new(
+    SoupCookieJarcookieJar = WebCore::defaultCookieJar();
+    SoupCookiec1 = soup_cookie_new(
         cookie->name, cookie->value, cookie->domain, cookie->path, -1);
 
     l = soup_cookie_jar_all_cookies(cookieJar);
     for (p = l; p; p = p->next) {
-        SoupCookie *c2 = static_cast<SoupCookie*>(p->data);
+        SoupCookiec2 = static_cast<SoupCookie*>(p->data);
         if (soup_cookie_equal(c1, c2)) {
             soup_cookie_jar_delete_cookie(cookieJar, c2);
             break;
@@ -130,7 +130,7 @@ void ewk_cookies_cookie_del(Ewk_Cookie *cookie)
 #endif
 }
 
-void ewk_cookies_cookie_free(Ewk_Cookie *cookie)
+void ewk_cookies_cookie_free(Ewk_Cookiecookie)
 {
 #if USE(SOUP)
     EINA_SAFETY_ON_NULL_RETURN(cookie);
@@ -145,7 +145,7 @@ void ewk_cookies_cookie_free(Ewk_Cookie *cookie)
 void ewk_cookies_policy_set(Ewk_Cookie_Policy p)
 {
 #if USE(SOUP)
-    SoupCookieJar *cookieJar = WebCore::defaultCookieJar();
+    SoupCookieJarcookieJar = WebCore::defaultCookieJar();
     SoupCookieJarAcceptPolicy policy;
 
     policy = SOUP_COOKIE_JAR_ACCEPT_ALWAYS;
@@ -169,7 +169,7 @@ Ewk_Cookie_Policy ewk_cookies_policy_get(void)
 {
     Ewk_Cookie_Policy ewk_policy = EWK_COOKIE_JAR_ACCEPT_ALWAYS;
 #if USE(SOUP)
-    SoupCookieJar *cookieJar = WebCore::defaultCookieJar();
+    SoupCookieJarcookieJar = WebCore::defaultCookieJar();
     SoupCookieJarAcceptPolicy policy;
 
     policy = soup_cookie_jar_get_accept_policy(cookieJar);
index ec7fb7b..fd2f36b 100644 (file)
@@ -63,25 +63,25 @@ static const char EWK_FRAME_TYPE_STR[] = "EWK_Frame";
 
 struct Ewk_Frame_Smart_Data {
     Evas_Object_Smart_Clipped_Data base;
-    Evas_Object *self;
-    Evas_Object *view;
+    Evas_Objectself;
+    Evas_Objectview;
 #ifdef EWK_FRAME_DEBUG
-    Evas_Object *region;
+    Evas_Objectregion;
 #endif
-    WebCore::Frame *frame;
-    const char *title;
-    const char *uri;
-    const char *name;
+    WebCore::Frameframe;
+    const chartitle;
+    const charuri;
+    const charname;
     struct {
         Evas_Coord w, h;
     } contents_size;
-    Eina_Bool textZoom:1;
-    Eina_Bool editable:1;
+    Eina_Bool textZoom : 1;
+    Eina_Bool editable : 1;
 };
 
 struct Eina_Iterator_Ewk_Frame {
     Eina_Iterator base;
-    Evas_Object *obj;
+    Evas_Objectobj;
     unsigned currentIndex;
 };
 
@@ -90,18 +90,18 @@ struct Eina_Iterator_Ewk_Frame {
 #else
 #define EWK_FRAME_TYPE_CHECK(o, ...)                                    \
     do {                                                                \
-        const char *_tmp_otype = evas_object_type_get(o);               \
+        const char_tmp_otype = evas_object_type_get(o);               \
         if (EINA_UNLIKELY(_tmp_otype != EWK_FRAME_TYPE_STR)) {          \
             EINA_LOG_CRIT                                               \
                 ("%p (%s) is not of an ewk_frame!", o,                  \
-                 _tmp_otype ? _tmp_otype : "(null)");                   \
+                _tmp_otype ? _tmp_otype : "(null)");                    \
             return __VA_ARGS__;                                         \
         }                                                               \
     } while (0)
 #endif
 
 #define EWK_FRAME_SD_GET(o, ptr)                                \
-    Ewk_Frame_Smart_Data *ptr = (Ewk_Frame_Smart_Data *)evas_object_smart_data_get(o)
+    Ewk_Frame_Smart_Data *ptr = (Ewk_Frame_Smart_Data*)evas_object_smart_data_get(o)
 
 #define EWK_FRAME_SD_GET_OR_RETURN(o, ptr, ...)         \
     EWK_FRAME_TYPE_CHECK(o, __VA_ARGS__);               \
@@ -115,9 +115,9 @@ struct Eina_Iterator_Ewk_Frame {
 static Evas_Smart_Class _parent_sc = EVAS_SMART_CLASS_INIT_NULL;
 
 #ifdef EWK_FRAME_DEBUG
-static inline void _ewk_frame_debug(Evas_Object *o)
+static inline void _ewk_frame_debug(Evas_Objecto)
 {
-    Evas_Object *clip, *parent;
+    Evas_Object* clip, * parent;
     Evas_Coord x, y, w, h, cx, cy, cw, ch;
     int r, g, b, a, cr, cg, cb, ca;
 
@@ -140,22 +140,22 @@ static inline void _ewk_frame_debug(Evas_Object *o)
 }
 #endif
 
-static WebCore::FrameLoaderClientEfl *_ewk_frame_loader_efl_get(WebCore::Frame *frame)
+static WebCore::FrameLoaderClientEfl* _ewk_frame_loader_efl_get(WebCore::Frame* frame)
 {
     return static_cast<WebCore::FrameLoaderClientEfl*>(frame->loader()->client());
 }
 
-static inline Evas_Object *kit(WebCore::Frame *frame)
+static inline Evas_Object* kit(WebCore::Frame* frame)
 {
     if (!frame)
         return 0;
-    WebCore::FrameLoaderClientEfl *fl = _ewk_frame_loader_efl_get(frame);
+    WebCore::FrameLoaderClientEflfl = _ewk_frame_loader_efl_get(frame);
     if (!fl)
         return 0;
     return fl->webFrame();
 }
 
-static Eina_Bool _ewk_frame_children_iterator_next(Eina_Iterator_Ewk_Frame *it, Evas_Object **data)
+static Eina_Bool _ewk_frame_children_iterator_next(Eina_Iterator_Ewk_Frame* it, Evas_Object** data)
 {
     EWK_FRAME_SD_GET_OR_RETURN(it->obj, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -171,12 +171,12 @@ static Eina_Bool _ewk_frame_children_iterator_next(Eina_Iterator_Ewk_Frame *it,
     return EINA_FALSE;
 }
 
-static Evas_Object *_ewk_frame_children_iterator_get_container(Eina_Iterator_Ewk_Frame *it)
+static Evas_Object* _ewk_frame_children_iterator_get_container(Eina_Iterator_Ewk_Frame* it)
 {
     return it->obj;
 }
 
-static void _ewk_frame_smart_add(Evas_Object *o)
+static void _ewk_frame_smart_add(Evas_Objecto)
 {
     EWK_FRAME_SD_GET(o, sd);
 
@@ -255,7 +255,7 @@ static void _ewk_frame_smart_del(Evas_Object *o)
     _parent_sc.del(o);
 }
 
-static void _ewk_frame_smart_resize(Evas_Object *o, Evas_Coord w, Evas_Coord h)
+static void _ewk_frame_smart_resize(Evas_Objecto, Evas_Coord w, Evas_Coord h)
 {
     EWK_FRAME_SD_GET(o, sd);
     evas_object_resize(sd->base.clipper, w, h);
@@ -270,7 +270,7 @@ static void _ewk_frame_smart_resize(Evas_Object *o, Evas_Coord w, Evas_Coord h)
 #endif
 }
 
-static void _ewk_frame_smart_set(Evas_Smart_Class *api)
+static void _ewk_frame_smart_set(Evas_Smart_Classapi)
 {
     evas_object_smart_clipped_smart_set(api);
     api->add = _ewk_frame_smart_add;
@@ -278,10 +278,10 @@ static void _ewk_frame_smart_set(Evas_Smart_Class *api)
     api->resize = _ewk_frame_smart_resize;
 }
 
-static inline Evas_Smart *_ewk_frame_smart_class_new(void)
+static inline Evas_Smart_ewk_frame_smart_class_new(void)
 {
     static Evas_Smart_Class sc = EVAS_SMART_CLASS_INIT_NAME_VERSION(EWK_FRAME_TYPE_STR);
-    static Evas_Smart *smart = 0;
+    static Evas_Smartsmart = 0;
 
     if (EINA_UNLIKELY(!smart)) {
         evas_object_smart_clipped_smart_set(&_parent_sc);
@@ -292,17 +292,17 @@ static inline Evas_Smart *_ewk_frame_smart_class_new(void)
     return smart;
 }
 
-Evas_Object *ewk_frame_view_get(const Evas_Object *o)
+Evas_Object* ewk_frame_view_get(const Evas_Object* o)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     return sd->view;
 }
 
-Eina_Iterator *ewk_frame_children_iterator_new(Evas_Object *o)
+Eina_Iterator* ewk_frame_children_iterator_new(Evas_Object* o)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
-    Eina_Iterator_Ewk_Frame *it = (Eina_Iterator_Ewk_Frame *)
-        calloc(1, sizeof(Eina_Iterator_Ewk_Frame));
+    Eina_Iterator_Ewk_Frame* it = (Eina_Iterator_Ewk_Frame*)
+                                  calloc(1, sizeof(Eina_Iterator_Ewk_Frame));
     if (!it)
         return 0;
 
@@ -315,7 +315,7 @@ Eina_Iterator *ewk_frame_children_iterator_new(Evas_Object *o)
     return &it->base;
 }
 
-Evas_Object *ewk_frame_child_find(Evas_Object *o, const char *name)
+Evas_Object* ewk_frame_child_find(Evas_Object* o, const char* name)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(name, 0);
@@ -324,29 +324,29 @@ Evas_Object *ewk_frame_child_find(Evas_Object *o, const char *name)
     return kit(sd->frame->tree()->find(WTF::AtomicString(s)));
 }
 
-Eina_Bool ewk_frame_uri_set(Evas_Object *o, const char *uri)
+Eina_Bool ewk_frame_uri_set(Evas_Object* o, const char* uri)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     WebCore::KURL kurl(WebCore::KURL(), WTF::String::fromUTF8(uri));
     WebCore::ResourceRequest req(kurl);
-    WebCore::FrameLoader *loader = sd->frame->loader();
+    WebCore::FrameLoaderloader = sd->frame->loader();
     loader->load(req, false);
     return EINA_TRUE;
 }
 
-const char *ewk_frame_uri_get(const Evas_Object *o)
+const char* ewk_frame_uri_get(const Evas_Object* o)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     return sd->uri;
 }
 
-const char *ewk_frame_title_get(const Evas_Object *o)
+const char* ewk_frame_title_get(const Evas_Object* o)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     return sd->title;
 }
 
-const char *ewk_frame_name_get(const Evas_Object *o)
+const char* ewk_frame_name_get(const Evas_Object* o)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
 
@@ -365,7 +365,7 @@ const char *ewk_frame_name_get(const Evas_Object *o)
     return sd->name;
 }
 
-Eina_Bool ewk_frame_contents_size_get(const Evas_Object *o, Evas_Coord *w, Evas_Coord *h)
+Eina_Bool ewk_frame_contents_size_get(const Evas_Object* o, Evas_Coord* w, Evas_Coord* h)
 {
     if (w)
         *w = 0;
@@ -379,7 +379,7 @@ Eina_Bool ewk_frame_contents_size_get(const Evas_Object *o, Evas_Coord *w, Evas_
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_frame_contents_set_internal(Ewk_Frame_Smart_Data *sd, const char *contents, size_t contents_size, const char *mime_type, const char *encoding, const char *base_uri, const char *unreachable_uri)
+static Eina_Bool _ewk_frame_contents_set_internal(Ewk_Frame_Smart_Data* sd, const char* contents, size_t contents_size, const char* mime_type, const char* encoding, const char* base_uri, const char* unreachable_uri)
 {
     size_t len = strlen(contents);
     if (contents_size < 1 || contents_size > len)
@@ -401,36 +401,36 @@ static Eina_Bool _ewk_frame_contents_set_internal(Ewk_Frame_Smart_Data *sd, cons
     WTF::RefPtr<WebCore::SharedBuffer> buffer = WebCore::SharedBuffer::create(contents, contents_size);
     WebCore::SubstituteData substituteData
         (buffer.release(),
-         WTF::String::fromUTF8(mime_type),
-         WTF::String::fromUTF8(encoding),
-         baseKURL, unreachableKURL);
+        WTF::String::fromUTF8(mime_type),
+        WTF::String::fromUTF8(encoding),
+        baseKURL, unreachableKURL);
     WebCore::ResourceRequest request(baseKURL);
 
     sd->frame->loader()->load(request, substituteData, false);
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_contents_set(Evas_Object *o, const char *contents, size_t contents_size, const char *mime_type, const char *encoding, const char *base_uri)
+Eina_Bool ewk_frame_contents_set(Evas_Object* o, const char* contents, size_t contents_size, const char* mime_type, const char* encoding, const char* base_uri)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_FALSE_RETURN_VAL(sd->frame, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(contents, EINA_FALSE);
     return _ewk_frame_contents_set_internal
-        (sd, contents, contents_size, mime_type, encoding, base_uri, 0);
+               (sd, contents, contents_size, mime_type, encoding, base_uri, 0);
 }
 
-Eina_Bool ewk_frame_contents_alternate_set(Evas_Object *o, const char *contents, size_t contents_size, const char *mime_type, const char *encoding, const char *base_uri, const char *unreachable_uri)
+Eina_Bool ewk_frame_contents_alternate_set(Evas_Object* o, const char* contents, size_t contents_size, const char* mime_type, const char* encoding, const char* base_uri, const char* unreachable_uri)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_FALSE_RETURN_VAL(sd->frame, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(contents, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(unreachable_uri, EINA_FALSE);
     return _ewk_frame_contents_set_internal
-        (sd, contents, contents_size, mime_type, encoding, base_uri,
-         unreachable_uri);
+               (sd, contents, contents_size, mime_type, encoding, base_uri,
+               unreachable_uri);
 }
 
-Eina_Bool ewk_frame_script_execute(Evas_Object *o, const char *script)
+Eina_Bool ewk_frame_script_execute(Evas_Object* o, const char* script)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_FALSE_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -439,14 +439,14 @@ Eina_Bool ewk_frame_script_execute(Evas_Object *o, const char *script)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_editable_get(const Evas_Object *o)
+Eina_Bool ewk_frame_editable_get(const Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
     return sd->editable;
 }
 
-Eina_Bool ewk_frame_editable_set(Evas_Object *o, Eina_Bool editable)
+Eina_Bool ewk_frame_editable_set(Evas_Objecto, Eina_Bool editable)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -458,7 +458,7 @@ Eina_Bool ewk_frame_editable_set(Evas_Object *o, Eina_Bool editable)
     return EINA_TRUE;
 }
 
-char *ewk_frame_selection_get(const Evas_Object *o)
+char* ewk_frame_selection_get(const Evas_Object* o)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, 0);
@@ -468,7 +468,7 @@ char *ewk_frame_selection_get(const Evas_Object *o)
     return strdup(s.data());
 }
 
-Eina_Bool ewk_frame_text_search(const Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap)
+Eina_Bool ewk_frame_text_search(const Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -477,7 +477,7 @@ Eina_Bool ewk_frame_text_search(const Evas_Object *o, const char *string, Eina_B
     return sd->frame->editor()->findString(WTF::String::fromUTF8(string), forward, case_sensitive, wrap, true);
 }
 
-unsigned int ewk_frame_text_matches_mark(Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit)
+unsigned int ewk_frame_text_matches_mark(Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -487,7 +487,7 @@ unsigned int ewk_frame_text_matches_mark(Evas_Object *o, const char *string, Ein
     return sd->frame->editor()->countMatchesForText(WTF::String::fromUTF8(string), case_sensitive, limit, true);
 }
 
-Eina_Bool ewk_frame_text_matches_unmark_all(Evas_Object *o)
+Eina_Bool ewk_frame_text_matches_unmark_all(Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -496,7 +496,7 @@ Eina_Bool ewk_frame_text_matches_unmark_all(Evas_Object *o)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_text_matches_highlight_set(Evas_Object *o, Eina_Bool highlight)
+Eina_Bool ewk_frame_text_matches_highlight_set(Evas_Objecto, Eina_Bool highlight)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -504,7 +504,7 @@ Eina_Bool ewk_frame_text_matches_highlight_set(Evas_Object *o, Eina_Bool highlig
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_text_matches_highlight_get(const Evas_Object *o)
+Eina_Bool ewk_frame_text_matches_highlight_get(const Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -514,7 +514,7 @@ Eina_Bool ewk_frame_text_matches_highlight_get(const Evas_Object *o)
 /**
  * Comparison function used by ewk_frame_text_matches_nth_pos_get
  */
-static bool _ewk_frame_rect_cmp_less_than(const WebCore::IntRect &i, const WebCore::IntRect &j)
+static bool _ewk_frame_rect_cmp_less_than(const WebCore::IntRect& i, const WebCore::IntRect& j)
 {
     return (i.y() < j.y() || (i.y() == j.y() && i.x() < j.x()));
 }
@@ -522,12 +522,12 @@ static bool _ewk_frame_rect_cmp_less_than(const WebCore::IntRect &i, const WebCo
 /**
  * Predicate used by ewk_frame_text_matches_nth_pos_get
  */
-static bool _ewk_frame_rect_is_negative_value(const WebCore::IntRect &i)
+static bool _ewk_frame_rect_is_negative_value(const WebCore::IntRecti)
 {
     return (i.x() < 0 || i.y() < 0);
 }
 
-Eina_Bool ewk_frame_text_matches_nth_pos_get(const Evas_Object *o, size_t n, int *x, int *y)
+Eina_Bool ewk_frame_text_matches_nth_pos_get(const Evas_Object* o, size_t n, int* x, int* y)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -538,18 +538,18 @@ Eina_Bool ewk_frame_text_matches_nth_pos_get(const Evas_Object *o, size_t n, int
     std::remove_if(intRects.begin(), intRects.end(), _ewk_frame_rect_is_negative_value);
 
     if (intRects.isEmpty() || n > intRects.size())
-      return EINA_FALSE;
+        return EINA_FALSE;
 
     std::sort(intRects.begin(), intRects.end(), _ewk_frame_rect_cmp_less_than);
 
     if (x)
-      *x = intRects[n - 1].x();
+        *x = intRects[n - 1].x();
     if (y)
-      *y = intRects[n - 1].y();
+        *y = intRects[n - 1].y();
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_stop(Evas_Object *o)
+Eina_Bool ewk_frame_stop(Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -557,7 +557,7 @@ Eina_Bool ewk_frame_stop(Evas_Object *o)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_reload(Evas_Object *o)
+Eina_Bool ewk_frame_reload(Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -565,7 +565,7 @@ Eina_Bool ewk_frame_reload(Evas_Object *o)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_reload_full(Evas_Object *o)
+Eina_Bool ewk_frame_reload_full(Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -573,38 +573,38 @@ Eina_Bool ewk_frame_reload_full(Evas_Object *o)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_back(Evas_Object *o)
+Eina_Bool ewk_frame_back(Evas_Objecto)
 {
     return ewk_frame_navigate(o, -1);
 }
 
-Eina_Bool ewk_frame_forward(Evas_Object *o)
+Eina_Bool ewk_frame_forward(Evas_Objecto)
 {
     return ewk_frame_navigate(o, 1);
 }
 
-Eina_Bool ewk_frame_navigate(Evas_Object *o, int steps)
+Eina_Bool ewk_frame_navigate(Evas_Objecto, int steps)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
-    WebCore::Page *page = sd->frame->page();
+    WebCore::Pagepage = sd->frame->page();
     if (!page->canGoBackOrForward(steps))
         return EINA_FALSE;
     page->goBackOrForward(steps);
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_back_possible(Evas_Object *o)
+Eina_Bool ewk_frame_back_possible(Evas_Objecto)
 {
     return ewk_frame_navigate_possible(o, -1);
 }
 
-Eina_Bool ewk_frame_forward_possible(Evas_Object *o)
+Eina_Bool ewk_frame_forward_possible(Evas_Objecto)
 {
     return ewk_frame_navigate_possible(o, 1);
 }
 
-Eina_Bool ewk_frame_navigate_possible(Evas_Object *o, int steps)
+Eina_Bool ewk_frame_navigate_possible(Evas_Objecto, int steps)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -612,7 +612,7 @@ Eina_Bool ewk_frame_navigate_possible(Evas_Object *o, int steps)
     return page->canGoBackOrForward(steps);
 }
 
-float ewk_frame_zoom_get(const Evas_Object *o)
+float ewk_frame_zoom_get(const Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, -1.0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, -1.0);
@@ -622,7 +622,7 @@ float ewk_frame_zoom_get(const Evas_Object *o)
     return sd->frame->pageZoomFactor();
 }
 
-Eina_Bool ewk_frame_zoom_set(Evas_Object *o, float zoom)
+Eina_Bool ewk_frame_zoom_set(Evas_Objecto, float zoom)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -633,13 +633,13 @@ Eina_Bool ewk_frame_zoom_set(Evas_Object *o, float zoom)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_zoom_text_only_get(const Evas_Object *o)
+Eina_Bool ewk_frame_zoom_text_only_get(const Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return sd->textZoom;
 }
 
-Eina_Bool ewk_frame_zoom_text_only_set(Evas_Object *o, Eina_Bool setting)
+Eina_Bool ewk_frame_zoom_text_only_set(Evas_Objecto, Eina_Bool setting)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -655,7 +655,7 @@ Eina_Bool ewk_frame_zoom_text_only_set(Evas_Object *o, Eina_Bool setting)
     return EINA_TRUE;
 }
 
-void ewk_frame_hit_test_free(Ewk_Hit_Test *hit_test)
+void ewk_frame_hit_test_free(Ewk_Hit_Testhit_test)
 {
     EINA_SAFETY_ON_NULL_RETURN(hit_test);
     eina_stringshare_del(hit_test->title);
@@ -668,7 +668,7 @@ void ewk_frame_hit_test_free(Ewk_Hit_Test *hit_test)
     free(hit_test);
 }
 
-Ewk_Hit_Test *ewk_frame_hit_test_new(const Evas_Object *o, int x, int y)
+Ewk_Hit_Test* ewk_frame_hit_test_new(const Evas_Object* o, int x, int y)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, 0);
@@ -678,15 +678,15 @@ Ewk_Hit_Test *ewk_frame_hit_test_new(const Evas_Object *o, int x, int y)
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->contentRenderer(), 0);
 
     WebCore::HitTestResult result = sd->frame->eventHandler()->hitTestResultAtPoint
-        (view->windowToContents(WebCore::IntPoint(x, y)),
-         /*allowShadowContent*/ false, /*ignoreClipping*/ true);
+                                        (view->windowToContents(WebCore::IntPoint(x, y)),
+                                        /*allowShadowContent*/ false, /*ignoreClipping*/ true);
 
     if (result.scrollbar())
         return 0;
     if (!result.innerNode())
         return 0;
 
-    Ewk_Hit_Test *hit_test = (Ewk_Hit_Test *)calloc(1, sizeof(Ewk_Hit_Test));
+    Ewk_Hit_Test* hit_test = (Ewk_Hit_Test*)calloc(1, sizeof(Ewk_Hit_Test));
     if (!hit_test) {
         CRITICAL("Could not allocate memory for hit test.");
         return 0;
@@ -741,7 +741,7 @@ Ewk_Hit_Test *ewk_frame_hit_test_new(const Evas_Object *o, int x, int y)
 }
 
 Eina_Bool
-ewk_frame_scroll_add(Evas_Object *o, int dx, int dy)
+ewk_frame_scroll_add(Evas_Objecto, int dx, int dy)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -751,7 +751,7 @@ ewk_frame_scroll_add(Evas_Object *o, int dx, int dy)
 }
 
 Eina_Bool
-ewk_frame_scroll_set(Evas_Object *o, int x, int y)
+ewk_frame_scroll_set(Evas_Objecto, int x, int y)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -761,7 +761,7 @@ ewk_frame_scroll_set(Evas_Object *o, int x, int y)
 }
 
 Eina_Bool
-ewk_frame_scroll_size_get(const Evas_Object *o, int *w, int *h)
+ewk_frame_scroll_size_get(const Evas_Object* o, int* w, int* h)
 {
     if (w)
         *w = 0;
@@ -779,7 +779,7 @@ ewk_frame_scroll_size_get(const Evas_Object *o, int *w, int *h)
 }
 
 Eina_Bool
-ewk_frame_scroll_pos_get(const Evas_Object *o, int *x, int *y)
+ewk_frame_scroll_pos_get(const Evas_Object* o, int* x, int* y)
 {
     if (x)
         *x = 0;
@@ -796,7 +796,7 @@ ewk_frame_scroll_pos_get(const Evas_Object *o, int *x, int *y)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_visible_content_geometry_get(const Evas_Object *o, Eina_Bool include_scrollbars, int *x, int *y, int *w, int *h)
+Eina_Bool ewk_frame_visible_content_geometry_get(const Evas_Object* o, Eina_Bool include_scrollbars, int* x, int* y, int* w, int* h)
 {
     if (x)
         *x = 0;
@@ -821,7 +821,7 @@ Eina_Bool ewk_frame_visible_content_geometry_get(const Evas_Object *o, Eina_Bool
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_paint_full_get(const Evas_Object *o)
+Eina_Bool ewk_frame_paint_full_get(const Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -829,7 +829,7 @@ Eina_Bool ewk_frame_paint_full_get(const Evas_Object *o)
     return sd->frame->view()->paintsEntireContents();
 }
 
-void ewk_frame_paint_full_set(Evas_Object *o, Eina_Bool flag)
+void ewk_frame_paint_full_set(Evas_Objecto, Eina_Bool flag)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
     EINA_SAFETY_ON_NULL_RETURN(sd->frame);
@@ -837,7 +837,7 @@ void ewk_frame_paint_full_set(Evas_Object *o, Eina_Bool flag)
     sd->frame->view()->setPaintsEntireContents(flag);
 }
 
-Eina_Bool ewk_frame_feed_focus_in(Evas_Object *o)
+Eina_Bool ewk_frame_feed_focus_in(Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -846,14 +846,14 @@ Eina_Bool ewk_frame_feed_focus_in(Evas_Object *o)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_feed_focus_out(Evas_Object *o)
+Eina_Bool ewk_frame_feed_focus_out(Evas_Objecto)
 {
     // TODO: what to do on focus out?
     ERR("what to do?");
     return EINA_FALSE;
 }
 
-Eina_Bool ewk_frame_feed_mouse_wheel(Evas_Object *o, const Evas_Event_Mouse_Wheel *ev)
+Eina_Bool ewk_frame_feed_mouse_wheel(Evas_Object* o, const Evas_Event_Mouse_Wheel* ev)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -868,7 +868,7 @@ Eina_Bool ewk_frame_feed_mouse_wheel(Evas_Object *o, const Evas_Event_Mouse_Whee
     return sd->frame->eventHandler()->handleWheelEvent(event);
 }
 
-Eina_Bool ewk_frame_feed_mouse_down(Evas_Object *o, const Evas_Event_Mouse_Down *ev)
+Eina_Bool ewk_frame_feed_mouse_down(Evas_Object* o, const Evas_Event_Mouse_Down* ev)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -886,13 +886,13 @@ Eina_Bool ewk_frame_feed_mouse_down(Evas_Object *o, const Evas_Event_Mouse_Down
     return sd->frame->eventHandler()->handleMousePressEvent(event);
 }
 
-Eina_Bool ewk_frame_feed_mouse_up(Evas_Object *o, const Evas_Event_Mouse_Up *ev)
+Eina_Bool ewk_frame_feed_mouse_up(Evas_Object* o, const Evas_Event_Mouse_Up* ev)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(ev, EINA_FALSE);
 
-    WebCore::FrameView *view = sd->frame->view();
+    WebCore::FrameViewview = sd->frame->view();
     DBG("o=%p, view=%p, button=%d, pos=%d,%d",
         o, view, ev->button, ev->canvas.x, ev->canvas.y);
     EINA_SAFETY_ON_NULL_RETURN_VAL(view, EINA_FALSE);
@@ -904,7 +904,7 @@ Eina_Bool ewk_frame_feed_mouse_up(Evas_Object *o, const Evas_Event_Mouse_Up *ev)
     return sd->frame->eventHandler()->handleMouseReleaseEvent(event);
 }
 
-Eina_Bool ewk_frame_feed_mouse_move(Evas_Object *o, const Evas_Event_Mouse_Move *ev)
+Eina_Bool ewk_frame_feed_mouse_move(Evas_Object* o, const Evas_Event_Mouse_Move* ev)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -923,7 +923,7 @@ Eina_Bool ewk_frame_feed_mouse_move(Evas_Object *o, const Evas_Event_Mouse_Move
     return sd->frame->eventHandler()->mouseMoved(event);
 }
 
-Eina_Bool ewk_frame_feed_touch_event(Evas_Object *o, Ewk_Touch_Event_Type action, Eina_List *points, int metaState)
+Eina_Bool ewk_frame_feed_touch_event(Evas_Object* o, Ewk_Touch_Event_Type action, Eina_List* points, int metaState)
 {
     Eina_Bool ret = EINA_FALSE;
 
@@ -961,7 +961,7 @@ Eina_Bool ewk_frame_feed_touch_event(Evas_Object *o, Ewk_Touch_Event_Type action
     return ret;
 }
 
-static inline Eina_Bool _ewk_frame_handle_key_scrolling(WebCore::Frame *frame, const WebCore::PlatformKeyboardEvent &event)
+static inline Eina_Bool _ewk_frame_handle_key_scrolling(WebCore::Frame* frame, const WebCore::PlatformKeyboardEvent& event)
 {
     WebCore::ScrollDirection direction;
     WebCore::ScrollGranularity granularity;
@@ -1009,7 +1009,7 @@ static inline Eina_Bool _ewk_frame_handle_key_scrolling(WebCore::Frame *frame, c
         break;
     case VK_DOWN:
         direction = WebCore::ScrollDown;
-         if (event.ctrlKey())
+        if (event.ctrlKey())
             granularity = WebCore::ScrollByDocument;
         else
             granularity = WebCore::ScrollByLine;
@@ -1025,7 +1025,7 @@ static inline Eina_Bool _ewk_frame_handle_key_scrolling(WebCore::Frame *frame, c
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_frame_feed_key_down(Evas_Object *o, const Evas_Event_Key_Down *ev)
+Eina_Bool ewk_frame_feed_key_down(Evas_Object* o, const Evas_Event_Key_Down* ev)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -1041,7 +1041,7 @@ Eina_Bool ewk_frame_feed_key_down(Evas_Object *o, const Evas_Event_Key_Down *ev)
     return _ewk_frame_handle_key_scrolling(sd->frame, event);
 }
 
-Eina_Bool ewk_frame_feed_key_up(Evas_Object *o, const Evas_Event_Key_Up *ev)
+Eina_Bool ewk_frame_feed_key_up(Evas_Object* o, const Evas_Event_Key_Up* ev)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -1054,12 +1054,12 @@ Eina_Bool ewk_frame_feed_key_up(Evas_Object *o, const Evas_Event_Key_Up *ev)
     return sd->frame->eventHandler()->keyEvent(event);
 }
 
-Ewk_Text_Selection_Type ewk_frame_text_selection_type_get(const Evas_Object *o)
+Ewk_Text_Selection_Type ewk_frame_text_selection_type_get(const Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EWK_TEXT_SELECTION_NONE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EWK_TEXT_SELECTION_NONE);
 
-    WebCore::FrameSelection *controller = sd->frame->selection();
+    WebCore::FrameSelectioncontroller = sd->frame->selection();
     if (!controller)
         return EWK_TEXT_SELECTION_NONE;
 
@@ -1088,7 +1088,7 @@ Ewk_Text_Selection_Type ewk_frame_text_selection_type_get(const Evas_Object *o)
  *
  * @return a new frame object or @c 0 on failure
  */
-Evas_Object *ewk_frame_add(Evas *e)
+Evas_Object* ewk_frame_add(Evas* e)
 {
     return evas_object_smart_add(e, _ewk_frame_smart_class_new());
 }
@@ -1100,7 +1100,7 @@ Evas_Object *ewk_frame_add(Evas *e)
  *
  * This is internal and should never be called by external users.
  */
-Eina_Bool ewk_frame_init(Evas_Object *o, Evas_Object *view, WebCore::Frame *frame)
+Eina_Bool ewk_frame_init(Evas_Object* o, Evas_Object* view, WebCore::Frame* frame)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     if (!sd->frame) {
@@ -1122,11 +1122,11 @@ Eina_Bool ewk_frame_init(Evas_Object *o, Evas_Object *view, WebCore::Frame *fram
  *
  * Adds child to the frame.
  */
-Eina_Bool ewk_frame_child_add(Evas_Object *o, WTF::PassRefPtr<WebCore::Frame> child, const WTF::String &name, const WebCore::KURL &url, const WTF::String &referrer)
+Eina_Bool ewk_frame_child_add(Evas_Object* o, WTF::PassRefPtr<WebCore::Frame> child, const WTF::String& name, const WebCore::KURL& url, const WTF::String& referrer)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     char buf[256];
-    Evas_Object *frame;
+    Evas_Objectframe;
     WebCore::Frame* cf;
 
     frame = ewk_frame_add(sd->base.evas);
@@ -1191,7 +1191,7 @@ void ewk_frame_view_set(Evas_Object* o, Evas_Object* newParent)
  * @internal
  * Frame was destroyed by loader, remove internal reference.
  */
-void ewk_frame_core_gone(Evas_Object *o)
+void ewk_frame_core_gone(Evas_Objecto)
 {
     DBG("o=%p", o);
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
@@ -1205,7 +1205,7 @@ void ewk_frame_core_gone(Evas_Object *o)
  * Avoid using this call from outside, add specific ewk_frame_*
  * actions instead.
  */
-WebCore::Frame* ewk_frame_core_get(const Evas_Object *o)
+WebCore::Frame* ewk_frame_core_get(const Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     return sd->frame;
@@ -1224,7 +1224,7 @@ WebCore::Frame* ewk_frame_core_get(const Evas_Object *o)
  *
  * Emits signal: "resource,request,willsend"
  */
-void ewk_frame_request_will_send(Evas_Object *o, Ewk_Frame_Resource_Request *request)
+void ewk_frame_request_will_send(Evas_Object* o, Ewk_Frame_Resource_Request* request)
 {
     evas_object_smart_callback_call(o, "resource,request,willsend", request);
 }
@@ -1238,9 +1238,9 @@ void ewk_frame_request_will_send(Evas_Object *o, Ewk_Frame_Resource_Request *req
  *
  * Emits signal: "resource,request,new"
  */
-void ewk_frame_request_assign_identifier(Evas_Object *o, const Ewk_Frame_Resource_Request *request)
+void ewk_frame_request_assign_identifier(Evas_Object* o, const Ewk_Frame_Resource_Request* request)
 {
-    evas_object_smart_callback_call(o, "resource,request,new", (void *)request);
+    evas_object_smart_callback_call(o, "resource,request,new", (void*)request);
 }
 
 /**
@@ -1251,7 +1251,7 @@ void ewk_frame_request_assign_identifier(Evas_Object *o, const Ewk_Frame_Resourc
  *
  * Emits signal: "navigation,first"
  */
-void ewk_frame_did_perform_first_navigation(Evas_Object *o)
+void ewk_frame_did_perform_first_navigation(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "navigation,first", 0);
 }
@@ -1265,7 +1265,7 @@ void ewk_frame_did_perform_first_navigation(Evas_Object *o)
  *
  * Emits signal: "state,save"
  */
-void ewk_frame_view_state_save(Evas_Object *o, WebCore::HistoryItem *item)
+void ewk_frame_view_state_save(Evas_Object* o, WebCore::HistoryItem* item)
 {
     evas_object_smart_callback_call(o, "state,save", 0);
 }
@@ -1276,9 +1276,9 @@ void ewk_frame_view_state_save(Evas_Object *o, WebCore::HistoryItem *item)
  *
  * Emits signal: "load,started" with no parameters.
  */
-void ewk_frame_load_started(Evas_Object *o)
+void ewk_frame_load_started(Evas_Objecto)
 {
-    Evas_Object *main_frame;
+    Evas_Objectmain_frame;
     DBG("o=%p", o);
     evas_object_smart_callback_call(o, "load,started", 0);
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
@@ -1297,7 +1297,7 @@ void ewk_frame_load_started(Evas_Object *o)
  *
  * Emits signal: "load,provisional" with no parameters.
  */
-void ewk_frame_load_provisional(Evas_Object *o)
+void ewk_frame_load_provisional(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "load,provisional", 0);
 }
@@ -1310,7 +1310,7 @@ void ewk_frame_load_provisional(Evas_Object *o)
  *
  * Emits signal: "load,firstlayout,finished" with no parameters.
  */
-void ewk_frame_load_firstlayout_finished(Evas_Object *o)
+void ewk_frame_load_firstlayout_finished(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "load,firstlayout,finished", 0);
 }
@@ -1323,7 +1323,7 @@ void ewk_frame_load_firstlayout_finished(Evas_Object *o)
  *
  * Emits signal: "load,nonemptylayout,finished" with no parameters.
  */
-void ewk_frame_load_firstlayout_nonempty_finished(Evas_Object *o)
+void ewk_frame_load_firstlayout_nonempty_finished(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "load,nonemptylayout,finished", 0);
 }
@@ -1336,7 +1336,7 @@ void ewk_frame_load_firstlayout_nonempty_finished(Evas_Object *o)
  *
  * Emits signal: "load,document,finished" with no parameters.
  */
-void ewk_frame_load_document_finished(Evas_Object *o)
+void ewk_frame_load_document_finished(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "load,document,finished", 0);
 }
@@ -1351,9 +1351,9 @@ void ewk_frame_load_document_finished(Evas_Object *o)
  * @note there should notbe any error stuff here, but trying to be
  *       compatible with previous WebKit.
  */
-void ewk_frame_load_finished(Evas_Object *o, const char *error_domain, int error_code, Eina_Bool is_cancellation, const char *error_description, const char *failing_url)
+void ewk_frame_load_finished(Evas_Object* o, const char* error_domain, int error_code, Eina_Bool is_cancellation, const char* error_description, const char* failing_url)
 {
-    Ewk_Frame_Load_Error buf, *error;
+    Ewk_Frame_Load_Error buf, * error;
     if (!error_domain) {
         DBG("o=%p, success.", o);
         error = 0;
@@ -1381,7 +1381,7 @@ void ewk_frame_load_finished(Evas_Object *o, const char *error_domain, int error
  *
  * Emits signal: "load,error" with pointer to Ewk_Frame_Load_Error.
  */
-void ewk_frame_load_error(Evas_Object *o, const char *error_domain, int error_code, Eina_Bool is_cancellation, const char *error_description, const char *failing_url)
+void ewk_frame_load_error(Evas_Object* o, const char* error_domain, int error_code, Eina_Bool is_cancellation, const char* error_description, const char* failing_url)
 {
     Ewk_Frame_Load_Error error;
 
@@ -1408,7 +1408,7 @@ void ewk_frame_load_error(Evas_Object *o, const char *error_domain, int error_co
  *
  * Emits signal: "load,progress" with pointer to a double from 0.0 to 1.0.
  */
-void ewk_frame_load_progress_changed(Evas_Object *o)
+void ewk_frame_load_progress_changed(Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
     EINA_SAFETY_ON_NULL_RETURN(sd->frame);
@@ -1428,7 +1428,7 @@ void ewk_frame_load_progress_changed(Evas_Object *o)
  *
  * Reports contents size changed.
  */
-void ewk_frame_contents_size_changed(Evas_Object *o, Evas_Coord w, Evas_Coord h)
+void ewk_frame_contents_size_changed(Evas_Objecto, Evas_Coord w, Evas_Coord h)
 {
     DBG("o=%p: %dx%d", o, w, h);
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
@@ -1447,13 +1447,13 @@ void ewk_frame_contents_size_changed(Evas_Object *o, Evas_Coord w, Evas_Coord h)
  *
  * Reports title changed.
  */
-void ewk_frame_title_set(Evas_Object *o, const char *title)
+void ewk_frame_title_set(Evas_Object* o, const char* title)
 {
     DBG("o=%p, title=%s", o, title ? title : "(null)");
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
     if (!eina_stringshare_replace(&sd->title, title))
         return;
-    evas_object_smart_callback_call(o, "title,changed", (void *)sd->title);
+    evas_object_smart_callback_call(o, "title,changed", (void*)sd->title);
 }
 
 /**
@@ -1461,7 +1461,7 @@ void ewk_frame_title_set(Evas_Object *o, const char *title)
  *
  * Creates a view.
  */
-void ewk_frame_view_create_for_view(Evas_Object *o, Evas_Object *view)
+void ewk_frame_view_create_for_view(Evas_Object* o, Evas_Object* view)
 {
     DBG("o=%p, view=%p", o, view);
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
@@ -1486,12 +1486,12 @@ void ewk_frame_view_create_for_view(Evas_Object *o, Evas_Object *view)
     if (!sd->frame->view())
         return;
 
-    const char *theme = ewk_view_theme_get(view);
+    const chartheme = ewk_view_theme_get(view);
     sd->frame->view()->setEdjeTheme(theme);
     sd->frame->view()->setEvasObject(o);
 }
 
-ssize_t ewk_frame_source_get(const Evas_Object *o, char **frame_source)
+ssize_t ewk_frame_source_get(const Evas_Object* o, char** frame_source)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, -1);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, -1);
@@ -1508,11 +1508,11 @@ ssize_t ewk_frame_source_get(const Evas_Object *o, char **frame_source)
     }
 
     // Look for <html> tag. If it exists, the node contatins all document's source.
-    WebCore::Node *documentNode = sd->frame->document()->documentElement();
+    WebCore::NodedocumentNode = sd->frame->document()->documentElement();
     if (documentNode)
-        for (WebCore::Node *node = documentNode->firstChild(); node; node = node->parentElement()) {
+        for (WebCore::Nodenode = documentNode->firstChild(); node; node = node->parentElement()) {
             if (node->hasTagName(WebCore::HTMLNames::htmlTag)) {
-                WebCore::HTMLElement *element = static_cast<WebCore::HTMLElement*>(node);
+                WebCore::HTMLElementelement = static_cast<WebCore::HTMLElement*>(node);
                 if (element)
                     source = element->outerHTML();
                 break;
@@ -1541,25 +1541,25 @@ ssize_t ewk_frame_source_get(const Evas_Object *o, char **frame_source)
     return source_length;
 }
 
-Eina_List *ewk_frame_resources_location_get(const Evas_Object *o)
+Eina_List* ewk_frame_resources_location_get(const Evas_Object* o)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->document(), 0);
 
-    Eina_List *listOfImagesLocation = 0;
+    Eina_ListlistOfImagesLocation = 0;
 
     // Get src attibute of images and saves them to the Eina_List.
     RefPtr<WebCore::HTMLCollection> images = sd->frame->document()->images();
     for (size_t index = 0; index < images->length(); ++index) {
-        WebCore::HTMLImageElement *imageElement = static_cast<WebCore::HTMLImageElement*>(images->item(index));
+        WebCore::HTMLImageElementimageElement = static_cast<WebCore::HTMLImageElement*>(images->item(index));
         if (!imageElement || imageElement->src().isNull() || imageElement->src().isEmpty())
             continue;
 
         WTF::String imageLocation = imageElement->src().string();
         // Look for duplicated location.
-        Eina_List *listIterator = 0;
-        void *data = 0;
+        Eina_ListlistIterator = 0;
+        voiddata = 0;
         Eina_Bool found = EINA_FALSE;
         EINA_LIST_FOREACH(listOfImagesLocation, listIterator, data)
             if (found = !strcmp(static_cast<char*>(data), imageLocation.utf8().data()))
@@ -1567,7 +1567,7 @@ Eina_List *ewk_frame_resources_location_get(const Evas_Object *o)
         if (found)
             continue;
 
-        char *imageLocationCopy = strdup(imageLocation.utf8().data());
+        charimageLocationCopy = strdup(imageLocation.utf8().data());
         if (!imageLocationCopy)
             goto out_of_memory_handler;
         listOfImagesLocation = eina_list_append(listOfImagesLocation, imageLocationCopy);
@@ -1579,7 +1579,7 @@ Eina_List *ewk_frame_resources_location_get(const Evas_Object *o)
 
 out_of_memory_handler:
     CRITICAL("Could not allocate memory.");
-    void *data;
+    voiddata;
     EINA_LIST_FREE(listOfImagesLocation, data)
         free(data);
     return 0;
@@ -1591,7 +1591,7 @@ out_of_memory_handler:
  *
  * Emits signal: "uri,changed" with new uri as parameter.
  */
-Eina_Bool ewk_frame_uri_changed(Evas_Object *o)
+Eina_Bool ewk_frame_uri_changed(Evas_Objecto)
 {
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
@@ -1613,7 +1613,7 @@ Eina_Bool ewk_frame_uri_changed(Evas_Object *o)
  *
  * Forces layout for frame.
  */
-void ewk_frame_force_layout(Evas_Object *o)
+void ewk_frame_force_layout(Evas_Objecto)
 {
     DBG("o=%p", o);
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
@@ -1628,7 +1628,7 @@ void ewk_frame_force_layout(Evas_Object *o)
  *
  * Creates plugin.
  */
-WTF::PassRefPtr<WebCore::Widget> ewk_frame_plugin_create(Evas_Object *o, const WebCore::IntSize &pluginSize, WebCore::HTMLPlugInElement *element, const WebCore::KURL &url, const WTF::Vector<WTF::String> &paramNames, const WTF::Vector<WTF::String> &paramValues, const WTF::String &mimeType, bool loadManually)
+WTF::PassRefPtr<WebCore::Widget> ewk_frame_plugin_create(Evas_Object* o, const WebCore::IntSize& pluginSize, WebCore::HTMLPlugInElement* element, const WebCore::KURL& url, const WTF::Vector<WTF::String>& paramNames, const WTF::Vector<WTF::String>& paramValues, const WTF::String& mimeType, bool loadManually)
 {
     return 0;
 }
@@ -1641,7 +1641,7 @@ WTF::PassRefPtr<WebCore::Widget> ewk_frame_plugin_create(Evas_Object *o, const W
  *
  * Emits signal: "editorclientselection,changed" with no parameters.
  */
-void ewk_frame_editor_client_selection_changed(Evas_Object *o)
+void ewk_frame_editor_client_selection_changed(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "editorclient,selection,changed", 0);
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
@@ -1656,7 +1656,7 @@ void ewk_frame_editor_client_selection_changed(Evas_Object *o)
  *
  * Emits signal: "editorclient,contents,changed" with no parameters.
  */
-void ewk_frame_editor_client_contents_changed(Evas_Object *o)
+void ewk_frame_editor_client_contents_changed(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "editorclient,contents,changed", 0);
     EWK_FRAME_SD_GET_OR_RETURN(o, sd);
index 91c7c5c..9ae7aa1 100644 (file)
@@ -34,7 +34,7 @@
 #include <wtf/text/CString.h>
 
 struct _Ewk_History {
-    WebCore::BackForwardListImpl *core;
+    WebCore::BackForwardListImplcore;
 };
 
 #define EWK_HISTORY_CORE_GET_OR_RETURN(history, core_, ...)      \
@@ -50,16 +50,16 @@ struct _Ewk_History {
         ERR("history->core is disabled!.");                      \
         return __VA_ARGS__;                                      \
     }                                                            \
-    WebCore::BackForwardListImpl *core_ = (history)->core
+    WebCore::BackForwardListImplcore_ = (history)->core
 
 
 struct _Ewk_History_Item {
-    WebCore::HistoryItem *core;
+    WebCore::HistoryItemcore;
 
-    const char *title;
-    const char *alternate_title;
-    const char *uri;
-    const char *original_uri;
+    const chartitle;
+    const charalternate_title;
+    const charuri;
+    const charoriginal_uri;
 };
 
 #define EWK_HISTORY_ITEM_CORE_GET_OR_RETURN(item, core_, ...) \
@@ -71,10 +71,10 @@ struct _Ewk_History_Item {
         CRITICAL("item->core is NULL.");                      \
         return __VA_ARGS__;                                   \
     }                                                         \
-    WebCore::HistoryItem *core_ = (item)->core
+    WebCore::HistoryItemcore_ = (item)->core
 
 
-static inline Ewk_History_Item *_ewk_history_item_new(WebCore::HistoryItem *core)
+static inline Ewk_History_Item* _ewk_history_item_new(WebCore::HistoryItem* core)
 {
     Ewk_History_Item* item;
 
@@ -83,7 +83,7 @@ static inline Ewk_History_Item *_ewk_history_item_new(WebCore::HistoryItem *core
         return 0;
     }
 
-    item = (Ewk_History_Item *)calloc(1, sizeof(Ewk_History_Item));
+    item = (Ewk_History_Item*)calloc(1, sizeof(Ewk_History_Item));
     if (!item) {
         CRITICAL("Could not allocate item memory.");
         return 0;
@@ -95,7 +95,7 @@ static inline Ewk_History_Item *_ewk_history_item_new(WebCore::HistoryItem *core
     return item;
 }
 
-static inline Eina_List *_ewk_history_item_list_get(const WebCore::HistoryItemVector &core_items)
+static inline Eina_List* _ewk_history_item_list_get(const WebCore::HistoryItemVector& core_items)
 {
     Eina_List* ret = 0;
     unsigned int i, size;
@@ -153,7 +153,7 @@ Ewk_History_Item* ewk_history_history_item_back_get(const Ewk_History* history)
 Ewk_History_Item* ewk_history_history_item_current_get(const Ewk_History* history)
 {
     EWK_HISTORY_CORE_GET_OR_RETURN(history, core, 0);
-    WebCore::HistoryItem *currentItem = core->currentItem();
+    WebCore::HistoryItemcurrentItem = core->currentItem();
     if (currentItem)
         return _ewk_history_item_new(currentItem);
     return 0;
@@ -322,7 +322,7 @@ double ewk_history_item_time_last_visited_get(const Ewk_History_Item* item)
 cairo_surface_t* ewk_history_item_icon_surface_get(const Ewk_History_Item* item)
 {
     EWK_HISTORY_ITEM_CORE_GET_OR_RETURN(item, core, 0);
-    
+
     WebCore::Image* icon = WebCore::iconDatabase().synchronousIconForPageURL(core->url(), WebCore::IntSize(16, 16));
     if (!icon) {
         ERR("icon is NULL.");
index 62b3aa4..ff8c383 100644 (file)
@@ -30,8 +30,8 @@
 
 #define EINA_MAGIC_CHECK_OR_RETURN(o, ...) \
     if (!EINA_MAGIC_CHECK(obj, EWK_JS_OBJECT_MAGIC)) { \
-       EINA_MAGIC_FAIL(obj, EWK_JS_OBJECT_MAGIC); \
-       return __VA_ARGS__; \
+        EINA_MAGIC_FAIL(obj, EWK_JS_OBJECT_MAGIC); \
+        return __VA_ARGS__; \
     }
 
 struct _Ewk_JS_Class {
index ab5567b..1e36abd 100644 (file)
@@ -191,7 +191,7 @@ Eina_Bool _ewk_init_body(void)
     // TODO: this should move to WebCore, already reported to webkit-gtk folks:
 #if USE(SOUP)
     if (1) {
-        SoupSession *session = WebCore::ResourceHandle::defaultSession();
+        SoupSessionsession = WebCore::ResourceHandle::defaultSession();
         soup_session_add_feature_by_type(session, SOUP_TYPE_CONTENT_SNIFFER);
         soup_session_add_feature_by_type(session, SOUP_TYPE_CONTENT_DECODER);
 
index 5c78923..26d52cb 100644 (file)
 #include <libsoup/soup.h>
 #endif
 
-void ewk_network_proxy_uri_set(const char *proxy)
+void ewk_network_proxy_uri_set(const charproxy)
 {
 #if USE(SOUP)
-    SoupSession *session = WebCore::ResourceHandle::defaultSession();
+    SoupSessionsession = WebCore::ResourceHandle::defaultSession();
 
     if (!proxy) {
         ERR("no proxy uri. remove proxy feature in soup.");
@@ -41,7 +41,7 @@ void ewk_network_proxy_uri_set(const char *proxy)
         return;
     }
 
-    SoupURI *uri = soup_uri_new(proxy);
+    SoupURIuri = soup_uri_new(proxy);
     EINA_SAFETY_ON_NULL_RETURN(uri);
 
     g_object_set(session, SOUP_SESSION_PROXY_URI, uri, NULL);
@@ -51,11 +51,11 @@ void ewk_network_proxy_uri_set(const char *proxy)
 #endif
 }
 
-const char *ewk_network_proxy_uri_get(void)
+const charewk_network_proxy_uri_get(void)
 {
 #if USE(SOUP)
-    SoupURI *uri;
-    SoupSession *session = WebCore::ResourceHandle::defaultSession();
+    SoupURIuri;
+    SoupSessionsession = WebCore::ResourceHandle::defaultSession();
     g_object_get(session, SOUP_SESSION_PROXY_URI, &uri, NULL);
 
     if (!uri) {
index 3433388..9c83a93 100644 (file)
@@ -55,10 +55,10 @@ extern "C" {
 typedef struct _Ewk_JS_Class Ewk_JS_Class;
 struct _Ewk_JS_Object {
     JavaScriptObject base;
-    const char *name;
-    const Ewk_JS_Class *cls;
-    Eina_Hash *properties;
-    Evas_Object *view; // ewk_view: check if this object has already been added to another ewk_view
+    const charname;
+    const Ewk_JS_Classcls;
+    Eina_Hashproperties;
+    Evas_Objectview; // ewk_view: check if this object has already been added to another ewk_view
     Ewk_JS_Object_Type type;
     EINA_MAGIC;
 };
@@ -77,70 +77,70 @@ struct Ewk_Window_Object_Cleared_Event {
     Evas_Object* frame;
 };
 
-void ewk_view_ready(Evas_Object *o);
-void ewk_view_input_method_state_set(Evas_Object *o, Eina_Bool active);
-void ewk_view_title_set(Evas_Object *o, const char *title);
-void ewk_view_uri_changed(Evas_Object *o);
-void ewk_view_load_started(Evas_Object *o);
-void ewk_view_load_provisional(Evas_Object *o);
-void ewk_view_frame_main_load_started(Evas_Object *o);
-void ewk_view_frame_main_cleared(Evas_Object *o);
-void ewk_view_frame_main_icon_received(Evas_Object *o);
-void ewk_view_load_finished(Evas_Object *o, const Ewk_Frame_Load_Error *error);
-void ewk_view_load_error(Evas_Object *o, const Ewk_Frame_Load_Error *error);
-void ewk_view_load_progress_changed(Evas_Object *o);
-void ewk_view_load_show(Evas_Object *o);
-void ewk_view_restore_state(Evas_Object *o, Evas_Object *frame);
-Evas_Object *ewk_view_window_create(Evas_Object *o, Eina_Bool javascript, const WebCore::WindowFeatures *coreFeatures);
-void ewk_view_window_close(Evas_Object *o);
+void ewk_view_ready(Evas_Objecto);
+void ewk_view_input_method_state_set(Evas_Objecto, Eina_Bool active);
+void ewk_view_title_set(Evas_Object* o, const char* title);
+void ewk_view_uri_changed(Evas_Objecto);
+void ewk_view_load_started(Evas_Objecto);
+void ewk_view_load_provisional(Evas_Objecto);
+void ewk_view_frame_main_load_started(Evas_Objecto);
+void ewk_view_frame_main_cleared(Evas_Objecto);
+void ewk_view_frame_main_icon_received(Evas_Objecto);
+void ewk_view_load_finished(Evas_Object* o, const Ewk_Frame_Load_Error* error);
+void ewk_view_load_error(Evas_Object* o, const Ewk_Frame_Load_Error* error);
+void ewk_view_load_progress_changed(Evas_Objecto);
+void ewk_view_load_show(Evas_Objecto);
+void ewk_view_restore_state(Evas_Object* o, Evas_Object* frame);
+Evas_Object* ewk_view_window_create(Evas_Object* o, Eina_Bool javascript, const WebCore::WindowFeatures* coreFeatures);
+void ewk_view_window_close(Evas_Objecto);
 
-void ewk_view_mouse_link_hover_in(Evas_Object *o, void *data);
-void ewk_view_mouse_link_hover_out(Evas_Object *o);
+void ewk_view_mouse_link_hover_in(Evas_Object* o, void* data);
+void ewk_view_mouse_link_hover_out(Evas_Objecto);
 
-void ewk_view_toolbars_visible_set(Evas_Object *o, Eina_Bool visible);
-void ewk_view_toolbars_visible_get(Evas_Object *o, Eina_Bool *visible);
+void ewk_view_toolbars_visible_set(Evas_Objecto, Eina_Bool visible);
+void ewk_view_toolbars_visible_get(Evas_Object* o, Eina_Bool* visible);
 
-void ewk_view_statusbar_visible_set(Evas_Object *o, Eina_Bool visible);
-void ewk_view_statusbar_visible_get(Evas_Object *o, Eina_Bool *visible);
-void ewk_view_statusbar_text_set(Evas_Object *o, const char *text);
+void ewk_view_statusbar_visible_set(Evas_Objecto, Eina_Bool visible);
+void ewk_view_statusbar_visible_get(Evas_Object* o, Eina_Bool* visible);
+void ewk_view_statusbar_text_set(Evas_Object* o, const char* text);
 
-void ewk_view_scrollbars_visible_set(Evas_Object *o, Eina_Bool visible);
-void ewk_view_scrollbars_visible_get(Evas_Object *o, Eina_Bool *visible);
+void ewk_view_scrollbars_visible_set(Evas_Objecto, Eina_Bool visible);
+void ewk_view_scrollbars_visible_get(Evas_Object* o, Eina_Bool* visible);
 
-void ewk_view_menubar_visible_set(Evas_Object *o, Eina_Bool visible);
-void ewk_view_menubar_visible_get(Evas_Object *o, Eina_Bool *visible);
+void ewk_view_menubar_visible_set(Evas_Objecto, Eina_Bool visible);
+void ewk_view_menubar_visible_get(Evas_Object* o, Eina_Bool* visible);
 
-void ewk_view_tooltip_text_set(Evas_Object *o, const char *text);
+void ewk_view_tooltip_text_set(Evas_Object* o, const char* text);
 
-void ewk_view_add_console_message(Evas_Object *o, const char *message, unsigned int lineNumber, const char *sourceID);
+void ewk_view_add_console_message(Evas_Object* o, const char* message, unsigned int lineNumber, const char* sourceID);
 
-void ewk_view_run_javascript_alert(Evas_Object *o, Evas_Object *frame, const char *message);
-Eina_Bool ewk_view_run_javascript_confirm(Evas_Object *o, Evas_Object *frame, const char *message);
-Eina_Bool ewk_view_run_javascript_prompt(Evas_Object *o, Evas_Object *frame, const char *message, const char *defaultValue, char **value);
-Eina_Bool ewk_view_should_interrupt_javascript(Evas_Object *o);
-uint64_t ewk_view_exceeded_database_quota(Evas_Object *o, Evas_Object *frame, const char *databaseName, uint64_t current_size, uint64_t expected_size);
+void ewk_view_run_javascript_alert(Evas_Object* o, Evas_Object* frame, const char* message);
+Eina_Bool ewk_view_run_javascript_confirm(Evas_Object* o, Evas_Object* frame, const char* message);
+Eina_Bool ewk_view_run_javascript_prompt(Evas_Object* o, Evas_Object* frame, const char* message, const char* defaultValue, char** value);
+Eina_Bool ewk_view_should_interrupt_javascript(Evas_Objecto);
+uint64_t ewk_view_exceeded_database_quota(Evas_Object* o, Evas_Object* frame, const char* databaseName, uint64_t current_size, uint64_t expected_size);
 
-Eina_Bool ewk_view_run_open_panel(Evas_Object *o, Evas_Object *frame, Eina_Bool allows_multiple_files, const char *accept_types, Eina_List **selected_filenames);
+Eina_Bool ewk_view_run_open_panel(Evas_Object* o, Evas_Object* frame, Eina_Bool allows_multiple_files, const char* accept_types, Eina_List** selected_filenames);
 
-void ewk_view_repaint(Evas_Object *o, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
-void ewk_view_scroll(Evas_Object *o, Evas_Coord dx, Evas_Coord dy, Evas_Coord sx, Evas_Coord sy, Evas_Coord sw, Evas_Coord sh, Evas_Coord cx, Evas_Coord cy, Evas_Coord cw, Evas_Coord ch, Eina_Bool main_frame);
-WebCore::Page *ewk_view_core_page_get(const Evas_Object *o);
+void ewk_view_repaint(Evas_Objecto, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
+void ewk_view_scroll(Evas_Objecto, Evas_Coord dx, Evas_Coord dy, Evas_Coord sx, Evas_Coord sy, Evas_Coord sw, Evas_Coord sh, Evas_Coord cx, Evas_Coord cy, Evas_Coord cw, Evas_Coord ch, Eina_Bool main_frame);
+WebCore::Page* ewk_view_core_page_get(const Evas_Object* o);
 
-WTF::PassRefPtr<WebCore::Frame> ewk_view_frame_create(Evas_Object *o, Evas_Object *frame, const WTF::String& name, WebCore::HTMLFrameOwnerElement *ownerElement, const WebCore::KURL &url, const WTF::String &referrer);
+WTF::PassRefPtr<WebCore::Frame> ewk_view_frame_create(Evas_Object* o, Evas_Object* frame, const WTF::String& name, WebCore::HTMLFrameOwnerElement* ownerElement, const WebCore::KURL& url, const WTF::String& referrer);
 
-WTF::PassRefPtr<WebCore::Widget> ewk_view_plugin_create(Evas_Object *o, Evas_Object *frame, const WebCore::IntSize &pluginSize, WebCore::HTMLPlugInElement *element, const WebCore::KURL &url, const WTF::Vector<WTF::String> &paramNames, const WTF::Vector<WTF::String> &paramValues, const WTF::String &mimeType, bool loadManually);
+WTF::PassRefPtr<WebCore::Widget> ewk_view_plugin_create(Evas_Object* o, Evas_Object* frame, const WebCore::IntSize& pluginSize, WebCore::HTMLPlugInElement* element, const WebCore::KURL& url, const WTF::Vector<WTF::String>& paramNames, const WTF::Vector<WTF::String>& paramValues, const WTF::String& mimeType, bool loadManually);
 
-void ewk_view_popup_new(Evas_Object *o, WebCore::PopupMenuClient *client, int selected, const WebCore::IntRect &rect);
-void ewk_view_viewport_attributes_set(Evas_Object *o, const WebCore::ViewportArguments &arguments);
+void ewk_view_popup_new(Evas_Object* o, WebCore::PopupMenuClient* client, int selected, const WebCore::IntRect& rect);
+void ewk_view_viewport_attributes_set(Evas_Object* o, const WebCore::ViewportArguments& arguments);
 
-void ewk_view_download_request(Evas_Object *o, Ewk_Download *download);
-void *ewk_view_protocol_handler_resource_get(Evas_Object *o, size_t *bytesRead, char **mime, const char *file);
+void ewk_view_download_request(Evas_Object* o, Ewk_Download* download);
+void* ewk_view_protocol_handler_resource_get(Evas_Object* o, size_t* bytesRead, char** mime, const char* file);
 
-void ewk_view_editor_client_contents_changed(Evas_Object *o);
-void ewk_view_editor_client_selection_changed(Evas_Object *o);
+void ewk_view_editor_client_contents_changed(Evas_Objecto);
+void ewk_view_editor_client_selection_changed(Evas_Objecto);
 
 #if ENABLE(NETSCAPE_PLUGIN_API)
-void ewk_view_js_window_object_clear(Evas_Object *o, Evas_Object *frame);
+void ewk_view_js_window_object_clear(Evas_Object* o, Evas_Object* frame);
 #endif
 
 int ewk_util_dpi_get(void);
@@ -154,71 +154,71 @@ void ewk_view_need_touch_events_set(Evas_Object*, bool needed);
 Eina_Bool ewk_view_need_touch_events_get(const Evas_Object*);
 #endif
 
-Ewk_History *ewk_history_new(WebCore::BackForwardListImpl *history);
-void ewk_history_free(Ewk_History *history);
-char *ewk_history_item_target_get(const Ewk_History_Item *item);
-Eina_Bool ewk_history_item_target_is(const Ewk_History_Item *item);
-Eina_List *ewk_history_item_children_get(const Ewk_History_Item *item);
+Ewk_History* ewk_history_new(WebCore::BackForwardListImpl* history);
+void ewk_history_free(Ewk_Historyhistory);
+char* ewk_history_item_target_get(const Ewk_History_Item* item);
+Eina_Bool ewk_history_item_target_is(const Ewk_History_Itemitem);
+Eina_List* ewk_history_item_children_get(const Ewk_History_Item* item);
 
 #if ENABLE(CONTEXT_MENUS)
-Ewk_Context_Menu *ewk_context_menu_new(Evas_Object *view, WebCore::ContextMenuController *controller);
-Eina_Bool ewk_context_menu_free(Ewk_Context_Menu *o);
-void ewk_context_menu_item_append(Ewk_Context_Menu *o, WebCore::ContextMenuItem &core);
-Ewk_Context_Menu *ewk_context_menu_custom_get(const Ewk_Context_Menu *o);
-void ewk_context_menu_show(const Ewk_Context_Menu *o);
+Ewk_Context_Menu* ewk_context_menu_new(Evas_Object* view, WebCore::ContextMenuController* controller);
+Eina_Bool ewk_context_menu_free(Ewk_Context_Menuo);
+void ewk_context_menu_item_append(Ewk_Context_Menu* o, WebCore::ContextMenuItem& core);
+Ewk_Context_Menu* ewk_context_menu_custom_get(const Ewk_Context_Menu* o);
+void ewk_context_menu_show(const Ewk_Context_Menuo);
 #endif
 
-const Eina_Rectangle *ewk_view_repaints_get(const Ewk_View_Private_Data *priv, size_t *count);
-const Ewk_Scroll_Request *ewk_view_scroll_requests_get(const Ewk_View_Private_Data *priv, size_t *count);
+const Eina_Rectangle* ewk_view_repaints_get(const Ewk_View_Private_Data* priv, size_t* count);
+const Ewk_Scroll_Request* ewk_view_scroll_requests_get(const Ewk_View_Private_Data* priv, size_t* count);
 
-void ewk_view_repaint_add(Ewk_View_Private_Data *priv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
+void ewk_view_repaint_add(Ewk_View_Private_Datapriv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
 
-void ewk_view_layout_if_needed_recursive(Ewk_View_Private_Data *priv);
+void ewk_view_layout_if_needed_recursive(Ewk_View_Private_Datapriv);
 
-Ewk_Window_Features *ewk_window_features_new_from_core(const WebCore::WindowFeatures *core);
+Ewk_Window_Features* ewk_window_features_new_from_core(const WebCore::WindowFeatures* core);
 
-Evas_Object *ewk_frame_add(Evas *e);
-Eina_Bool ewk_frame_init(Evas_Object *o, Evas_Object *view, WebCore::Frame *frame);
-Eina_Bool ewk_frame_child_add(Evas_Object *o, WTF::PassRefPtr<WebCore::Frame> child, const WTF::String &name, const WebCore::KURL &url, const WTF::String &referrer);
-void ewk_frame_view_set(Evas_Object *o, Evas_Object *newParent);
+Evas_Object* ewk_frame_add(Evas* e);
+Eina_Bool ewk_frame_init(Evas_Object* o, Evas_Object* view, WebCore::Frame* frame);
+Eina_Bool ewk_frame_child_add(Evas_Object* o, WTF::PassRefPtr<WebCore::Frame> child, const WTF::String& name, const WebCore::KURL& url, const WTF::String& referrer);
+void ewk_frame_view_set(Evas_Object* o, Evas_Object* newParent);
 
-WebCore::Frame *ewk_frame_core_get(const Evas_Object *o);
-void ewk_frame_core_gone(Evas_Object *o);
+WebCore::Frame* ewk_frame_core_get(const Evas_Object* o);
+void ewk_frame_core_gone(Evas_Objecto);
 
-void ewk_frame_load_started(Evas_Object *o);
-void ewk_frame_load_provisional(Evas_Object *o);
-void ewk_frame_load_firstlayout_finished(Evas_Object *o);
-void ewk_frame_load_firstlayout_nonempty_finished(Evas_Object *o);
-void ewk_frame_load_document_finished(Evas_Object *o);
-void ewk_frame_load_finished(Evas_Object *o, const char *error_domain, int error_code, Eina_Bool is_cancellation, const char *error_description, const char *failing_url);
-void ewk_frame_load_error(Evas_Object *o, const char *error_domain, int error_code, Eina_Bool is_cancellation, const char *error_description, const char *failing_url);
-void ewk_frame_load_progress_changed(Evas_Object *o);
+void ewk_frame_load_started(Evas_Objecto);
+void ewk_frame_load_provisional(Evas_Objecto);
+void ewk_frame_load_firstlayout_finished(Evas_Objecto);
+void ewk_frame_load_firstlayout_nonempty_finished(Evas_Objecto);
+void ewk_frame_load_document_finished(Evas_Objecto);
+void ewk_frame_load_finished(Evas_Object* o, const char* error_domain, int error_code, Eina_Bool is_cancellation, const char* error_description, const char* failing_url);
+void ewk_frame_load_error(Evas_Object* o, const char* error_domain, int error_code, Eina_Bool is_cancellation, const char* error_description, const char* failing_url);
+void ewk_frame_load_progress_changed(Evas_Objecto);
 
-void ewk_frame_request_will_send(Evas_Object *o, Ewk_Frame_Resource_Request *request);
-void ewk_frame_request_assign_identifier(Evas_Object *o, const Ewk_Frame_Resource_Request *request);
-void ewk_frame_view_state_save(Evas_Object *o, WebCore::HistoryItem* item);
+void ewk_frame_request_will_send(Evas_Object* o, Ewk_Frame_Resource_Request* request);
+void ewk_frame_request_assign_identifier(Evas_Object* o, const Ewk_Frame_Resource_Request* request);
+void ewk_frame_view_state_save(Evas_Objecto, WebCore::HistoryItem* item);
 
-void ewk_frame_did_perform_first_navigation(Evas_Object *o);
+void ewk_frame_did_perform_first_navigation(Evas_Objecto);
 
-void ewk_frame_contents_size_changed(Evas_Object *o, Evas_Coord w, Evas_Coord h);
-void ewk_frame_title_set(Evas_Object *o, const char *title);
+void ewk_frame_contents_size_changed(Evas_Objecto, Evas_Coord w, Evas_Coord h);
+void ewk_frame_title_set(Evas_Object* o, const char* title);
 
-void ewk_frame_view_create_for_view(Evas_Object *o, Evas_Object *view);
-Eina_Bool ewk_frame_uri_changed(Evas_Object *o);
-void ewk_frame_force_layout(Evas_Object *o);
+void ewk_frame_view_create_for_view(Evas_Object* o, Evas_Object* view);
+Eina_Bool ewk_frame_uri_changed(Evas_Objecto);
+void ewk_frame_force_layout(Evas_Objecto);
 
-WTF::PassRefPtr<WebCore::Widget> ewk_frame_plugin_create(Evas_Object *o, const WebCore::IntSize &pluginSize, WebCore::HTMLPlugInElement *element, const WebCore::KURL &url, const WTF::Vector<WTF::String> &paramNames, const WTF::Vector<WTF::String> &paramValues, const WTF::String &mimeType, bool loadManually);
+WTF::PassRefPtr<WebCore::Widget> ewk_frame_plugin_create(Evas_Object* o, const WebCore::IntSize& pluginSize, WebCore::HTMLPlugInElement* element, const WebCore::KURL& url, const WTF::Vector<WTF::String>& paramNames, const WTF::Vector<WTF::String>& paramValues, const WTF::String& mimeType, bool loadManually);
 
-Eina_Bool ewk_view_navigation_policy_decision(Evas_Object *o, Ewk_Frame_Resource_Request *request);
+Eina_Bool ewk_view_navigation_policy_decision(Evas_Object* o, Ewk_Frame_Resource_Request* request);
 
-void ewk_view_contents_size_changed(Evas_Object *o, Evas_Coord w, Evas_Coord h);
+void ewk_view_contents_size_changed(Evas_Objecto, Evas_Coord w, Evas_Coord h);
 
-WebCore::FloatRect ewk_view_page_rect_get(const Evas_Object *o);
+WebCore::FloatRect ewk_view_page_rect_get(const Evas_Objecto);
 
 const char* ewk_settings_default_user_agent_get(void);
 
-void ewk_frame_editor_client_contents_changed(Evas_Object *o);
-void ewk_frame_editor_client_selection_changed(Evas_Object *o);
+void ewk_frame_editor_client_contents_changed(Evas_Objecto);
+void ewk_frame_editor_client_selection_changed(Evas_Objecto);
 
 #ifdef __cplusplus
 
index af4bf61..c034dad 100644 (file)
@@ -42,7 +42,7 @@ typedef struct _EwkProtocolHandlerPrivate EwkProtocolHandlerPrivate;
 
 typedef struct {
     SoupRequest parent;
-    EwkProtocolHandlerPrivate *priv;
+    EwkProtocolHandlerPrivatepriv;
 } EwkCustomProtocolHandler;
 
 typedef struct {
index 815cfd2..b410fdc 100644 (file)
@@ -89,7 +89,7 @@ uint64_t ewk_settings_web_database_default_quota_get(void)
 #endif
 }
 
-void ewk_settings_web_database_path_set(const char *path)
+void ewk_settings_web_database_path_set(const charpath)
 {
 #if ENABLE(SQL_DATABASE)
     WTF::String corePath = WTF::String::fromUTF8(path);
@@ -102,7 +102,7 @@ void ewk_settings_web_database_path_set(const char *path)
 #endif
 }
 
-const char *ewk_settings_web_database_path_get(void)
+const charewk_settings_web_database_path_get(void)
 {
 #if ENABLE(SQL_DATABASE)
     return _ewk_default_web_database_path;
@@ -111,7 +111,7 @@ const char *ewk_settings_web_database_path_get(void)
 #endif
 }
 
-Eina_Bool ewk_settings_icon_database_path_set(const char *directory)
+Eina_Bool ewk_settings_icon_database_path_set(const chardirectory)
 {
     WebCore::IconDatabase::delayDatabaseCleanup();
 
@@ -156,7 +156,7 @@ Eina_Bool ewk_settings_icon_database_path_set(const char *directory)
     return EINA_TRUE;
 }
 
-const char *ewk_settings_icon_database_path_get(void)
+const charewk_settings_icon_database_path_get(void)
 {
     if (!WebCore::iconDatabase().isEnabled())
         return 0;
@@ -177,12 +177,12 @@ Eina_Bool ewk_settings_icon_database_clear(void)
     return EINA_TRUE;
 }
 
-cairo_surface_t *ewk_settings_icon_database_icon_surface_get(const char *url)
+cairo_surface_t* ewk_settings_icon_database_icon_surface_get(const char* url)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(url, 0);
 
     WebCore::KURL kurl(WebCore::KURL(), WTF::String::fromUTF8(url));
-    WebCore::Image *icon = WebCore::iconDatabase().synchronousIconForPageURL(kurl.string(), WebCore::IntSize(16, 16));
+    WebCore::Imageicon = WebCore::iconDatabase().synchronousIconForPageURL(kurl.string(), WebCore::IntSize(16, 16));
 
     if (!icon) {
         ERR("no icon for url %s", url);
@@ -192,14 +192,14 @@ cairo_surface_t *ewk_settings_icon_database_icon_surface_get(const char *url)
     return icon->nativeImageForCurrentFrame();
 }
 
-Evas_Object *ewk_settings_icon_database_icon_object_add(const char *url, Evas *canvas)
+Evas_Object* ewk_settings_icon_database_icon_object_add(const char* url, Evas* canvas)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(url, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(canvas, 0);
 
     WebCore::KURL kurl(WebCore::KURL(), WTF::String::fromUTF8(url));
-    WebCore::Image *icon = WebCore::iconDatabase().synchronousIconForPageURL(kurl.string(), WebCore::IntSize(16, 16));
-    cairo_surface_t *surface;
+    WebCore::Imageicon = WebCore::iconDatabase().synchronousIconForPageURL(kurl.string(), WebCore::IntSize(16, 16));
+    cairo_surface_tsurface;
 
     if (!icon) {
         ERR("no icon for url %s", url);
@@ -245,7 +245,7 @@ void ewk_settings_repaint_throttling_set(double deferred_repaint_delay, double i
  *
  * @return a pointer to an eina_stringshare containing the user agent string
  */
-const char *ewk_settings_default_user_agent_get(void)
+const charewk_settings_default_user_agent_get(void)
 {
     WTF::String ua_version = makeString(String::number(WEBKIT_USER_AGENT_MAJOR_VERSION), '.', String::number(WEBKIT_USER_AGENT_MINOR_VERSION), '+');
     WTF::String static_ua = makeString("Mozilla/5.0 (", _ewk_settings_webkit_platform_get(), "; ", _ewk_settings_webkit_os_version_get(), ") AppleWebKit/", ua_version) + makeString(" (KHTML, like Gecko) Version/5.0 Safari/", ua_version);
@@ -253,7 +253,7 @@ const char *ewk_settings_default_user_agent_get(void)
     return eina_stringshare_add(static_ua.utf8().data());
 }
 
-Eina_Bool ewk_settings_cache_directory_path_set(const char *path)
+Eina_Bool ewk_settings_cache_directory_path_set(const charpath)
 {
 #if ENABLE(OFFLINE_WEB_APPLICATIONS)
     if (!path)
@@ -270,7 +270,7 @@ Eina_Bool ewk_settings_cache_directory_path_set(const char *path)
 #endif
 }
 
-const char *ewk_settings_cache_directory_path_get()
+const charewk_settings_cache_directory_path_get()
 {
 #if ENABLE(OFFLINE_WEB_APPLICATIONS)
     return _ewk_cache_directory_path;
index b1a963d..46aaa83 100644 (file)
@@ -62,18 +62,18 @@ struct _Ewk_Tile_Stats {
     unsigned int misses;     /**< number of times it became dirty but not
                               * repainted at all since it was not visible.
                               */
-    Eina_Bool full_update:1; /**< tile requires full size update */
+    Eina_Bool full_update : 1; /**< tile requires full size update */
 };
 
 struct _Ewk_Tile {
-    Eina_Tiler *updates;    /**< updated/dirty areas */
+    Eina_Tilerupdates;    /**< updated/dirty areas */
     Ewk_Tile_Stats stats;       /**< tile usage statistics */
     unsigned long col, row; /**< tile tile position */
     Evas_Coord x, y;        /**< tile coordinate position */
 
     /* TODO: does it worth to keep those or create on demand? */
-    cairo_surface_t *surface;
-    cairo_t *cairo;
+    cairo_surface_tsurface;
+    cairo_tcairo;
 
     /** Never ever change those after tile is created (respect const!) */
     const Evas_Coord w, h;        /**< tile size (see TILE_SIZE_AT_ZOOM()) */
@@ -84,45 +84,45 @@ struct _Ewk_Tile {
                                    * alignement!
                                    */
     int visible;                  /**< visibility counter of this tile */
-    Evas_Object *image;           /**< Evas Image, the tile to be rendered */
-    uint8_t *pixels;
+    Evas_Objectimage;           /**< Evas Image, the tile to be rendered */
+    uint8_tpixels;
 };
 
 #include "ewk_tiled_matrix.h"
 #include "ewk_tiled_model.h"
 
 /* view */
-Evas_Object *ewk_tiled_backing_store_add(Evas *e);
-
-void ewk_tiled_backing_store_render_cb_set(Evas_Object *o, Eina_Bool (*cb)(void *data, Ewk_Tile *t, const Eina_Rectangle *area), const void *data);
-
-Eina_Bool ewk_tiled_backing_store_scroll_full_offset_set(Evas_Object *o, Evas_Coord x, Evas_Coord y);
-Eina_Bool ewk_tiled_backing_store_scroll_full_offset_add(Evas_Object *o, Evas_Coord dx, Evas_Coord dy);
-Eina_Bool ewk_tiled_backing_store_scroll_inner_offset_add(Evas_Object *o, Evas_Coord dx, Evas_Coord dy, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
-
-Eina_Bool ewk_tiled_backing_store_zoom_set(Evas_Object *o, float *zoom, Evas_Coord cx, Evas_Coord cy, Evas_Coord *offx, Evas_Coord *offy);
-Eina_Bool ewk_tiled_backing_store_zoom_weak_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas_Coord cy);
-void ewk_tiled_backing_store_fix_offsets(Evas_Object *o, Evas_Coord w, Evas_Coord h);
-void ewk_tiled_backing_store_zoom_weak_smooth_scale_set(Evas_Object *o, Eina_Bool smooth_scale);
-Eina_Bool ewk_tiled_backing_store_update(Evas_Object *o, const Eina_Rectangle *update);
-void ewk_tiled_backing_store_updates_process_pre_set(Evas_Object *o, void *(*cb)(void *data, Evas_Object *o), const void *data);
-void ewk_tiled_backing_store_updates_process_post_set(Evas_Object *o, void *(*cb)(void *data, void *pre_data, Evas_Object *o), const void *data);
-void ewk_tiled_backing_store_updates_process(Evas_Object *o);
-void ewk_tiled_backing_store_updates_clear(Evas_Object *o);
-void ewk_tiled_backing_store_contents_resize(Evas_Object *o, Evas_Coord width, Evas_Coord height);
-void ewk_tiled_backing_store_disabled_update_set(Evas_Object *o, Eina_Bool value);
-void ewk_tiled_backing_store_flush(Evas_Object *o);
-void ewk_tiled_backing_store_enable_scale_set(Evas_Object *o, Eina_Bool value);
-
-Ewk_Tile_Unused_Cache *ewk_tiled_backing_store_tile_unused_cache_get(const Evas_Object *o);
-void ewk_tiled_backing_store_tile_unused_cache_set(Evas_Object *o, Ewk_Tile_Unused_Cache *tuc);
-
-Eina_Bool ewk_tiled_backing_store_pre_render_region(Evas_Object *o, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom);
-Eina_Bool ewk_tiled_backing_store_pre_render_relative_radius(Evas_Object *o, unsigned int n, float zoom);
-void ewk_tiled_backing_store_pre_render_cancel(Evas_Object *o);
-
-Eina_Bool ewk_tiled_backing_store_disable_render(Evas_Object *o);
-Eina_Bool ewk_tiled_backing_store_enable_render(Evas_Object *o);
+Evas_Object* ewk_tiled_backing_store_add(Evas* e);
+
+void ewk_tiled_backing_store_render_cb_set(Evas_Object *o, Eina_Bool (* cb)(void* data, Ewk_Tile* t, const Eina_Rectangle* area), const void* data);
+
+Eina_Bool ewk_tiled_backing_store_scroll_full_offset_set(Evas_Objecto, Evas_Coord x, Evas_Coord y);
+Eina_Bool ewk_tiled_backing_store_scroll_full_offset_add(Evas_Objecto, Evas_Coord dx, Evas_Coord dy);
+Eina_Bool ewk_tiled_backing_store_scroll_inner_offset_add(Evas_Objecto, Evas_Coord dx, Evas_Coord dy, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
+
+Eina_Bool ewk_tiled_backing_store_zoom_set(Evas_Object* o, float* zoom, Evas_Coord cx, Evas_Coord cy, Evas_Coord* offx, Evas_Coord* offy);
+Eina_Bool ewk_tiled_backing_store_zoom_weak_set(Evas_Objecto, float zoom, Evas_Coord cx, Evas_Coord cy);
+void ewk_tiled_backing_store_fix_offsets(Evas_Objecto, Evas_Coord w, Evas_Coord h);
+void ewk_tiled_backing_store_zoom_weak_smooth_scale_set(Evas_Objecto, Eina_Bool smooth_scale);
+Eina_Bool ewk_tiled_backing_store_update(Evas_Object* o, const Eina_Rectangle* update);
+void ewk_tiled_backing_store_updates_process_pre_set(Evas_Object* o, void*(*cb)(void* data, Evas_Object *o), const void* data);
+void ewk_tiled_backing_store_updates_process_post_set(Evas_Object* o, void*(*cb)(void* data, void* pre_data, Evas_Object *o), const void* data);
+void ewk_tiled_backing_store_updates_process(Evas_Objecto);
+void ewk_tiled_backing_store_updates_clear(Evas_Objecto);
+void ewk_tiled_backing_store_contents_resize(Evas_Objecto, Evas_Coord width, Evas_Coord height);
+void ewk_tiled_backing_store_disabled_update_set(Evas_Objecto, Eina_Bool value);
+void ewk_tiled_backing_store_flush(Evas_Objecto);
+void ewk_tiled_backing_store_enable_scale_set(Evas_Objecto, Eina_Bool value);
+
+Ewk_Tile_Unused_Cache* ewk_tiled_backing_store_tile_unused_cache_get(const Evas_Object* o);
+void ewk_tiled_backing_store_tile_unused_cache_set(Evas_Object* o, Ewk_Tile_Unused_Cache* tuc);
+
+Eina_Bool ewk_tiled_backing_store_pre_render_region(Evas_Objecto, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom);
+Eina_Bool ewk_tiled_backing_store_pre_render_relative_radius(Evas_Objecto, unsigned int n, float zoom);
+void ewk_tiled_backing_store_pre_render_cancel(Evas_Objecto);
+
+Eina_Bool ewk_tiled_backing_store_disable_render(Evas_Objecto);
+Eina_Bool ewk_tiled_backing_store_enable_render(Evas_Objecto);
 #ifdef __cplusplus
 }
 #endif
index 04eb3c9..c437c37 100644 (file)
 #include <Evas.h>
 
 /* matrix of tiles */
-Ewk_Tile_Matrix *ewk_tile_matrix_new(Ewk_Tile_Unused_Cache *tuc, unsigned long cols, unsigned long rows, Evas_Colorspace cspace, void (*render_cb)(void *data, Ewk_Tile *t, const Eina_Rectangle *update), const void *render_data);
-void ewk_tile_matrix_free(Ewk_Tile_Matrix *tm);
+Ewk_Tile_Matrix* ewk_tile_matrix_new(Ewk_Tile_Unused_Cache* tuc, unsigned long cols, unsigned long rows, Evas_Colorspace cspace, void (* render_cb)(void* data, Ewk_Tile* t, const Eina_Rectangle* update), const void* render_data);
+void ewk_tile_matrix_free(Ewk_Tile_Matrixtm);
 
-void ewk_tile_matrix_resize(Ewk_Tile_Matrix *tm, unsigned long cols, unsigned long rows);
+void ewk_tile_matrix_resize(Ewk_Tile_Matrixtm, unsigned long cols, unsigned long rows);
 
-Ewk_Tile_Unused_Cache *ewk_tile_matrix_unused_cache_get(const Ewk_Tile_Matrix *tm);
+Ewk_Tile_Unused_Cache* ewk_tile_matrix_unused_cache_get(const Ewk_Tile_Matrix* tm);
 
-Ewk_Tile *ewk_tile_matrix_tile_exact_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned long row, float zoom);
-Eina_Bool ewk_tile_matrix_tile_exact_exists(Ewk_Tile_Matrix *tm, unsigned long col, unsigned long row, float zoom);
-Ewk_Tile *ewk_tile_matrix_tile_nearest_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned long row, float zoom);
-Ewk_Tile *ewk_tile_matrix_tile_new(Ewk_Tile_Matrix *tm, Evas *evas, unsigned long col, unsigned long row, float zoom);
-Eina_Bool ewk_tile_matrix_tile_put(Ewk_Tile_Matrix *tm, Ewk_Tile *t, double last_used);
+Ewk_Tile* ewk_tile_matrix_tile_exact_get(Ewk_Tile_Matrix* tm, unsigned long col, unsigned long row, float zoom);
+Eina_Bool ewk_tile_matrix_tile_exact_exists(Ewk_Tile_Matrixtm, unsigned long col, unsigned long row, float zoom);
+Ewk_Tile* ewk_tile_matrix_tile_nearest_get(Ewk_Tile_Matrix* tm, unsigned long col, unsigned long row, float zoom);
+Ewk_Tile* ewk_tile_matrix_tile_new(Ewk_Tile_Matrix* tm, Evas* evas, unsigned long col, unsigned long row, float zoom);
+Eina_Bool ewk_tile_matrix_tile_put(Ewk_Tile_Matrix* tm, Ewk_Tile* t, double last_used);
 
-Eina_Bool ewk_tile_matrix_tile_update(Ewk_Tile_Matrix *tm, unsigned long col, unsigned long row, const Eina_Rectangle *update);
-Eina_Bool ewk_tile_matrix_tile_update_full(Ewk_Tile_Matrix *tm, unsigned long col, unsigned long row);
-void ewk_tile_matrix_tile_updates_clear(Ewk_Tile_Matrix *tm, Ewk_Tile *t);
+Eina_Bool ewk_tile_matrix_tile_update(Ewk_Tile_Matrix* tm, unsigned long col, unsigned long row, const Eina_Rectangle* update);
+Eina_Bool ewk_tile_matrix_tile_update_full(Ewk_Tile_Matrixtm, unsigned long col, unsigned long row);
+void ewk_tile_matrix_tile_updates_clear(Ewk_Tile_Matrix* tm, Ewk_Tile* t);
 
-Eina_Bool ewk_tile_matrix_update(Ewk_Tile_Matrix *tm, const Eina_Rectangle *update, float zoom);
-void ewk_tile_matrix_updates_process(Ewk_Tile_Matrix *tm);
-void ewk_tile_matrix_updates_clear(Ewk_Tile_Matrix *tm);
-void ewk_tile_matrix_freeze(Ewk_Tile_Matrix *tm);
-void ewk_tile_matrix_thaw(Ewk_Tile_Matrix *tm);
+Eina_Bool ewk_tile_matrix_update(Ewk_Tile_Matrix* tm, const Eina_Rectangle* update, float zoom);
+void ewk_tile_matrix_updates_process(Ewk_Tile_Matrixtm);
+void ewk_tile_matrix_updates_clear(Ewk_Tile_Matrixtm);
+void ewk_tile_matrix_freeze(Ewk_Tile_Matrixtm);
+void ewk_tile_matrix_thaw(Ewk_Tile_Matrixtm);
 
 // remove me!
-    void ewk_tile_matrix_dbg(const Ewk_Tile_Matrix *tm);
-    void ewk_tile_unused_cache_dbg(const Ewk_Tile_Unused_Cache *tuc);
-    void ewk_tile_accounting_dbg(void);
+void ewk_tile_matrix_dbg(const Ewk_Tile_Matrix* tm);
+void ewk_tile_unused_cache_dbg(const Ewk_Tile_Unused_Cache* tuc);
+void ewk_tile_accounting_dbg(void);
 
 
 #endif // ewk_tiled_matrix_h
index 1033616..e65f310 100644 (file)
 #include <Evas.h>
 
 /* model */
-Ewk_Tile *ewk_tile_new(Evas *evas, Evas_Coord w, Evas_Coord h, float zoom, Evas_Colorspace cspace);
-void ewk_tile_free(Ewk_Tile *t);
-void ewk_tile_unused_cache_clear(Ewk_Tile_Unused_Cache *tuc);
-void ewk_tile_show(Ewk_Tile *t);
-void ewk_tile_hide(Ewk_Tile *t);
-Eina_Bool ewk_tile_visible_get(Ewk_Tile *t);
-void ewk_tile_update_full(Ewk_Tile *t);
-void ewk_tile_update_area(Ewk_Tile *t, const Eina_Rectangle *r);
-void ewk_tile_updates_process(Ewk_Tile *t, void (*cb)(void *data, Ewk_Tile *t, const Eina_Rectangle *update), const void *data);
-void ewk_tile_updates_clear(Ewk_Tile *t);
+Ewk_Tile* ewk_tile_new(Evas* evas, Evas_Coord w, Evas_Coord h, float zoom, Evas_Colorspace cspace);
+void ewk_tile_free(Ewk_Tilet);
+void ewk_tile_unused_cache_clear(Ewk_Tile_Unused_Cachetuc);
+void ewk_tile_show(Ewk_Tilet);
+void ewk_tile_hide(Ewk_Tilet);
+Eina_Bool ewk_tile_visible_get(Ewk_Tilet);
+void ewk_tile_update_full(Ewk_Tilet);
+void ewk_tile_update_area(Ewk_Tile* t, const Eina_Rectangle* r);
+void ewk_tile_updates_process(Ewk_Tile* t, void (* cb)(void* data, Ewk_Tile* t, const Eina_Rectangle* update), const void* data);
+void ewk_tile_updates_clear(Ewk_Tilet);
 
 /* cache of unused tiles */
-Ewk_Tile_Unused_Cache *ewk_tile_unused_cache_new(size_t max);
-void ewk_tile_unused_cache_lock_area(Ewk_Tile_Unused_Cache *tuc, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom);
-void ewk_tile_unused_cache_unlock_area(Ewk_Tile_Unused_Cache *tuc);
-Ewk_Tile_Unused_Cache *ewk_tile_unused_cache_ref(Ewk_Tile_Unused_Cache *tuc);
-void ewk_tile_unused_cache_unref(Ewk_Tile_Unused_Cache *tuc);
+Ewk_Tile_Unused_Cacheewk_tile_unused_cache_new(size_t max);
+void ewk_tile_unused_cache_lock_area(Ewk_Tile_Unused_Cachetuc, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom);
+void ewk_tile_unused_cache_unlock_area(Ewk_Tile_Unused_Cachetuc);
+Ewk_Tile_Unused_Cache* ewk_tile_unused_cache_ref(Ewk_Tile_Unused_Cache* tuc);
+void ewk_tile_unused_cache_unref(Ewk_Tile_Unused_Cachetuc);
 
-void ewk_tile_unused_cache_dirty(Ewk_Tile_Unused_Cache *tuc);
+void ewk_tile_unused_cache_dirty(Ewk_Tile_Unused_Cachetuc);
 
-void ewk_tile_unused_cache_freeze(Ewk_Tile_Unused_Cache *tuc);
-void ewk_tile_unused_cache_thaw(Ewk_Tile_Unused_Cache *tuc);
+void ewk_tile_unused_cache_freeze(Ewk_Tile_Unused_Cachetuc);
+void ewk_tile_unused_cache_thaw(Ewk_Tile_Unused_Cachetuc);
 
-Eina_Bool ewk_tile_unused_cache_tile_get(Ewk_Tile_Unused_Cache *tuc, Ewk_Tile *t);
-Eina_Bool ewk_tile_unused_cache_tile_put(Ewk_Tile_Unused_Cache *tuc, Ewk_Tile *t, void (*tile_free_cb)(void *data, Ewk_Tile *t), const void *data);
+Eina_Bool ewk_tile_unused_cache_tile_get(Ewk_Tile_Unused_Cache* tuc, Ewk_Tile* t);
+Eina_Bool ewk_tile_unused_cache_tile_put(Ewk_Tile_Unused_Cache* tuc, Ewk_Tile* t, void (* tile_free_cb)(void* data, Ewk_Tile* t), const void* data);
 
 #endif // ewk_tiled_model_h
 
index ce65f43..94896c4 100644 (file)
@@ -50,7 +50,7 @@ extern int _ewk_tiled_log_dom;
 
 #define REALLOC_OR_OOM_RET(ptr, size, ...)      \
     do {                                        \
-        void *__tmp_ptr;                        \
+        void__tmp_ptr;                        \
         __tmp_ptr = realloc(ptr, size);         \
         if (!__tmp_ptr && (size) > 0) {         \
             OOM("realloc", (size));             \
index 02b20f9..69fe6f0 100644 (file)
  * @param surface cairo representation of an image
  * @return converted cairo_surface object to the Evas_Object
  */
-Evas_Object *ewk_util_image_from_cairo_surface_add(Evas *canvas, cairo_surface_t *surface)
+Evas_Object* ewk_util_image_from_cairo_surface_add(Evas* canvas, cairo_surface_t* surface)
 {
     cairo_status_t status;
     cairo_surface_type_t type;
     cairo_format_t format;
     int w, h, stride;
-    Evas_Object *image;
-    const void *src;
-    void *dst;
+    Evas_Objectimage;
+    const voidsrc;
+    voiddst;
 
     EINA_SAFETY_ON_NULL_RETURN_VAL(canvas, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(surface, 0);
@@ -166,8 +166,8 @@ unsigned ewk_util_worker_thread_count()
 int ewk_util_dpi_get(void)
 {
 #ifdef HAVE_ECORE_X
-     return ecore_x_dpi_get();
+    return ecore_x_dpi_get();
 #else
-     return 160;
+    return 160;
 #endif
 }
index 3b32d9c..2371888 100644 (file)
@@ -29,6 +29,6 @@
 #include <Evas.h>
 #include <cairo.h>
 
-Evas_Object *ewk_util_image_from_cairo_surface_add(Evas *canvas, cairo_surface_t *surface);
+Evas_Object* ewk_util_image_from_cairo_surface_add(Evas* canvas, cairo_surface_t* surface);
 
 #endif // ewk_util_h
index ce555fd..4824cbc 100644 (file)
@@ -88,72 +88,72 @@ static const size_t EWK_VIEW_SCROLLS_SIZE_MAX_FREE = 32;
  * @internal
  */
 struct _Ewk_View_Private_Data {
-    WebCore::Page *page;
-    WebCore::Settings *page_settings;
-    WebCore::Frame *main_frame;
+    WebCore::Pagepage;
+    WebCore::Settingspage_settings;
+    WebCore::Framemain_frame;
     WebCore::ViewportArguments viewport_arguments;
-    Ewk_History *history;
+    Ewk_Historyhistory;
     struct {
         void* context;
         Ewk_View_Resource_Handler_Cb function;
     } custom_resource_handler;
     struct {
         Ewk_Menu menu;
-        WebCore::PopupMenuClient *menu_client;
+        WebCore::PopupMenuClientmenu_client;
     } popup;
     struct {
-        Eina_Rectangle *array;
+        Eina_Rectanglearray;
         size_t count;
         size_t allocated;
     } repaints;
     struct {
-        Ewk_Scroll_Request *array;
+        Ewk_Scroll_Requestarray;
         size_t count;
         size_t allocated;
     } scrolls;
     unsigned int imh; /**< input method hints */
     struct {
-        Eina_Bool view_cleared:1;
-        Eina_Bool need_touch_events:1;
+        Eina_Bool view_cleared : 1;
+        Eina_Bool need_touch_events : 1;
     } flags;
     struct {
-        const char *user_agent;
-        const char *user_stylesheet;
-        const char *encoding_default;
-        const char *encoding_custom;
-        const char *theme;
-        const char *local_storage_database_path;
+        const charuser_agent;
+        const charuser_stylesheet;
+        const charencoding_default;
+        const charencoding_custom;
+        const chartheme;
+        const charlocal_storage_database_path;
         int font_minimum_size;
         int font_minimum_logical_size;
         int font_default_size;
         int font_monospace_size;
-        const char *font_standard;
-        const char *font_cursive;
-        const char *font_monospace;
-        const char *font_fantasy;
-        const char *font_serif;
-        const char *font_sans_serif;
-        Eina_Bool auto_load_images:1;
-        Eina_Bool auto_shrink_images:1;
-        Eina_Bool enable_auto_resize_window:1;
-        Eina_Bool enable_developer_extras:1;
-        Eina_Bool enable_scripts:1;
-        Eina_Bool enable_plugins:1;
-        Eina_Bool enable_frame_flattening:1;
-        Eina_Bool encoding_detector:1;
-        Eina_Bool scripts_window_open:1;
-        Eina_Bool scripts_can_close_windows:1;
-        Eina_Bool resizable_textareas:1;
-        Eina_Bool private_browsing:1;
-        Eina_Bool caret_browsing:1;
-        Eina_Bool spatial_navigation:1;
-        Eina_Bool local_storage:1;
-        Eina_Bool offline_app_cache: 1;
-        Eina_Bool page_cache: 1;
+        const charfont_standard;
+        const charfont_cursive;
+        const charfont_monospace;
+        const charfont_fantasy;
+        const charfont_serif;
+        const charfont_sans_serif;
+        Eina_Bool auto_load_images : 1;
+        Eina_Bool auto_shrink_images : 1;
+        Eina_Bool enable_auto_resize_window : 1;
+        Eina_Bool enable_developer_extras : 1;
+        Eina_Bool enable_scripts : 1;
+        Eina_Bool enable_plugins : 1;
+        Eina_Bool enable_frame_flattening : 1;
+        Eina_Bool encoding_detector : 1;
+        Eina_Bool scripts_window_open : 1;
+        Eina_Bool scripts_can_close_windows : 1;
+        Eina_Bool resizable_textareas : 1;
+        Eina_Bool private_browsing : 1;
+        Eina_Bool caret_browsing : 1;
+        Eina_Bool spatial_navigation : 1;
+        Eina_Bool local_storage : 1;
+        Eina_Bool offline_app_cache : 1;
+        Eina_Bool page_cache : 1;
         struct {
             float min_scale;
             float max_scale;
-            Eina_Bool user_scalable:1;
+            Eina_Bool user_scalable : 1;
         } zoom_range;
         float device_pixel_ratio;
         double dom_timer_interval;
@@ -172,7 +172,7 @@ struct _Ewk_View_Private_Data {
         struct {
             Evas_Coord x, y;
         } center;
-        Ecore_Animator *animator;
+        Ecore_Animatoranimator;
     } animated_zoom;
 };
 
@@ -181,33 +181,33 @@ struct _Ewk_View_Private_Data {
 #else
 #define EWK_VIEW_TYPE_CHECK(o, ...)                                     \
     do {                                                                \
-        const char *_tmp_otype = evas_object_type_get(o);               \
-        const Evas_Smart *_tmp_s = evas_object_smart_smart_get(o);      \
+        const char_tmp_otype = evas_object_type_get(o);               \
+        const Evas_Smart_tmp_s = evas_object_smart_smart_get(o);      \
         if (EINA_UNLIKELY(!_tmp_s)) {                                   \
             EINA_LOG_CRIT                                               \
                 ("%p (%s) is not a smart object!", o,                   \
-                 _tmp_otype ? _tmp_otype : "(null)");                   \
+                _tmp_otype ? _tmp_otype : "(null)");                   \
             return __VA_ARGS__;                                         \
         }                                                               \
-        const Evas_Smart_Class *_tmp_sc = evas_smart_class_get(_tmp_s); \
+        const Evas_Smart_Class_tmp_sc = evas_smart_class_get(_tmp_s); \
         if (EINA_UNLIKELY(!_tmp_sc)) {                                  \
             EINA_LOG_CRIT                                               \
                 ("%p (%s) is not a smart object!", o,                   \
-                 _tmp_otype ? _tmp_otype : "(null)");                   \
+                _tmp_otype ? _tmp_otype : "(null)");                   \
             return __VA_ARGS__;                                         \
         }                                                               \
         if (EINA_UNLIKELY(_tmp_sc->data != EWK_VIEW_TYPE_STR)) {        \
             EINA_LOG_CRIT                                               \
                 ("%p (%s) is not of an ewk_view (need %p, got %p)!",    \
-                 o, _tmp_otype ? _tmp_otype : "(null)",                 \
-                 EWK_VIEW_TYPE_STR, _tmp_sc->data);                     \
+                o, _tmp_otype ? _tmp_otype : "(null)",                 \
+                EWK_VIEW_TYPE_STR, _tmp_sc->data);                     \
             return __VA_ARGS__;                                         \
         }                                                               \
     } while (0)
 #endif
 
 #define EWK_VIEW_SD_GET(o, ptr)                                 \
-    Ewk_View_Smart_Data *ptr = (Ewk_View_Smart_Data *)evas_object_smart_data_get(o)
+    Ewk_View_Smart_Data *ptr = (Ewk_View_Smart_Data*)evas_object_smart_data_get(o)
 
 #define EWK_VIEW_SD_GET_OR_RETURN(o, ptr, ...)          \
     EWK_VIEW_TYPE_CHECK(o, __VA_ARGS__);                \
@@ -229,7 +229,7 @@ struct _Ewk_View_Private_Data {
         return __VA_ARGS__;                                     \
     }
 
-static void _ewk_view_smart_changed(Ewk_View_Smart_Data *sd)
+static void _ewk_view_smart_changed(Ewk_View_Smart_Datasd)
 {
     if (sd->changed.any)
         return;
@@ -237,21 +237,21 @@ static void _ewk_view_smart_changed(Ewk_View_Smart_Data *sd)
     evas_object_smart_changed(sd->self);
 }
 
-static Eina_Bool _ewk_view_repaints_resize(Ewk_View_Private_Data *priv, size_t size)
+static Eina_Bool _ewk_view_repaints_resize(Ewk_View_Private_Datapriv, size_t size)
 {
-    void *tmp = realloc(priv->repaints.array, size * sizeof(Eina_Rectangle));
+    voidtmp = realloc(priv->repaints.array, size * sizeof(Eina_Rectangle));
     if (!tmp) {
         CRITICAL("could not realloc repaints array to %zu elements.", size);
         return EINA_FALSE;
     }
     priv->repaints.allocated = size;
-    priv->repaints.array = (Eina_Rectangle *)tmp;
+    priv->repaints.array = (Eina_Rectangle*)tmp;
     return EINA_TRUE;
 }
 
-static void _ewk_view_repaint_add(Ewk_View_Private_Data *priv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h)
+static void _ewk_view_repaint_add(Ewk_View_Private_Datapriv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h)
 {
-    Eina_Rectangle *r;
+    Eina_Rectangler;
 
     // fprintf(stderr, ">>> repaint requested: %d,%d+%dx%d\n", x, y, w, h);
     if (priv->repaints.allocated == priv->repaints.count) {
@@ -275,7 +275,7 @@ static void _ewk_view_repaint_add(Ewk_View_Private_Data *priv, Evas_Coord x, Eva
     DBG("add repaint %d, %d+%dx%d", x, y, w, h);
 }
 
-static void _ewk_view_repaints_flush(Ewk_View_Private_Data *priv)
+static void _ewk_view_repaints_flush(Ewk_View_Private_Datapriv)
 {
     priv->repaints.count = 0;
     if (priv->repaints.allocated <= EWK_VIEW_REPAINTS_SIZE_MAX_FREE)
@@ -283,22 +283,22 @@ static void _ewk_view_repaints_flush(Ewk_View_Private_Data *priv)
     _ewk_view_repaints_resize(priv, EWK_VIEW_REPAINTS_SIZE_MAX_FREE);
 }
 
-static Eina_Bool _ewk_view_scrolls_resize(Ewk_View_Private_Data *priv, size_t size)
+static Eina_Bool _ewk_view_scrolls_resize(Ewk_View_Private_Datapriv, size_t size)
 {
-    void *tmp = realloc(priv->scrolls.array, size * sizeof(Ewk_Scroll_Request));
+    voidtmp = realloc(priv->scrolls.array, size * sizeof(Ewk_Scroll_Request));
     if (!tmp) {
         CRITICAL("could not realloc scrolls array to %zu elements.", size);
         return EINA_FALSE;
     }
     priv->scrolls.allocated = size;
-    priv->scrolls.array = (Ewk_Scroll_Request *)tmp;
+    priv->scrolls.array = (Ewk_Scroll_Request*)tmp;
     return EINA_TRUE;
 }
 
-static void _ewk_view_scroll_add(Ewk_View_Private_Data *priv, Evas_Coord dx, Evas_Coord dy, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, Eina_Bool main_scroll)
+static void _ewk_view_scroll_add(Ewk_View_Private_Datapriv, Evas_Coord dx, Evas_Coord dy, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, Eina_Bool main_scroll)
 {
-    Ewk_Scroll_Request *r;
-    Ewk_Scroll_Request *r_end;
+    Ewk_Scroll_Requestr;
+    Ewk_Scroll_Requestr_end;
     Evas_Coord x2 = x + w, y2 = y + h;
 
     r = priv->scrolls.array;
@@ -345,8 +345,8 @@ static void _ewk_view_scroll_add(Ewk_View_Private_Data *priv, Evas_Coord dx, Eva
     r->main_scroll = main_scroll;
     DBG("add scroll in region: %d, %d+%dx%d %+03d, %+03d", x, y, w, h, dx, dy);
 
-    Eina_Rectangle *pr;
-    Eina_Rectangle *pr_end;
+    Eina_Rectanglepr;
+    Eina_Rectanglepr_end;
     size_t count;
     pr = priv->repaints.array;
     count = priv->repaints.count;
@@ -357,7 +357,7 @@ static void _ewk_view_scroll_add(Ewk_View_Private_Data *priv, Evas_Coord dx, Eva
     }
 }
 
-static void _ewk_view_scrolls_flush(Ewk_View_Private_Data *priv)
+static void _ewk_view_scrolls_flush(Ewk_View_Private_Datapriv)
 {
     priv->scrolls.count = 0;
     if (priv->scrolls.allocated <= EWK_VIEW_SCROLLS_SIZE_MAX_FREE)
@@ -366,10 +366,10 @@ static void _ewk_view_scrolls_flush(Ewk_View_Private_Data *priv)
 }
 
 // Default Event Handling //////////////////////////////////////////////
-static Eina_Bool _ewk_view_smart_focus_in(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_smart_focus_in(Ewk_View_Smart_Datasd)
 {
     EWK_VIEW_PRIV_GET(sd, priv);
-    WebCore::FocusController *fc = priv->page->focusController();
+    WebCore::FocusControllerfc = priv->page->focusController();
     DBG("o=%p, fc=%p", sd->self, fc);
     EINA_SAFETY_ON_NULL_RETURN_VAL(fc, EINA_FALSE);
 
@@ -378,10 +378,10 @@ static Eina_Bool _ewk_view_smart_focus_in(Ewk_View_Smart_Data *sd)
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_smart_focus_out(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_smart_focus_out(Ewk_View_Smart_Datasd)
 {
     EWK_VIEW_PRIV_GET(sd, priv);
-    WebCore::FocusController *fc = priv->page->focusController();
+    WebCore::FocusControllerfc = priv->page->focusController();
     DBG("o=%p, fc=%p", sd->self, fc);
     EINA_SAFETY_ON_NULL_RETURN_VAL(fc, EINA_FALSE);
 
@@ -390,29 +390,29 @@ static Eina_Bool _ewk_view_smart_focus_out(Ewk_View_Smart_Data *sd)
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_smart_mouse_wheel(Ewk_View_Smart_Data *sd, const Evas_Event_Mouse_Wheel *ev)
+static Eina_Bool _ewk_view_smart_mouse_wheel(Ewk_View_Smart_Data* sd, const Evas_Event_Mouse_Wheel* ev)
 {
     return ewk_frame_feed_mouse_wheel(sd->main_frame, ev);
 }
 
-static Eina_Bool _ewk_view_smart_mouse_down(Ewk_View_Smart_Data *sd, const Evas_Event_Mouse_Down *ev)
+static Eina_Bool _ewk_view_smart_mouse_down(Ewk_View_Smart_Data* sd, const Evas_Event_Mouse_Down* ev)
 {
     return ewk_frame_feed_mouse_down(sd->main_frame, ev);
 }
 
-static Eina_Bool _ewk_view_smart_mouse_up(Ewk_View_Smart_Data *sd, const Evas_Event_Mouse_Up *ev)
+static Eina_Bool _ewk_view_smart_mouse_up(Ewk_View_Smart_Data* sd, const Evas_Event_Mouse_Up* ev)
 {
     return ewk_frame_feed_mouse_up(sd->main_frame, ev);
 }
 
-static Eina_Bool _ewk_view_smart_mouse_move(Ewk_View_Smart_Data *sd, const Evas_Event_Mouse_Move *ev)
+static Eina_Bool _ewk_view_smart_mouse_move(Ewk_View_Smart_Data* sd, const Evas_Event_Mouse_Move* ev)
 {
     return ewk_frame_feed_mouse_move(sd->main_frame, ev);
 }
 
-static Eina_Bool _ewk_view_smart_key_down(Ewk_View_Smart_Data *sd, const Evas_Event_Key_Down *ev)
+static Eina_Bool _ewk_view_smart_key_down(Ewk_View_Smart_Data* sd, const Evas_Event_Key_Down* ev)
 {
-    Evas_Object *frame = ewk_view_frame_focused_get(sd->self);
+    Evas_Objectframe = ewk_view_frame_focused_get(sd->self);
 
     if (!frame)
         frame = sd->main_frame;
@@ -420,9 +420,9 @@ static Eina_Bool _ewk_view_smart_key_down(Ewk_View_Smart_Data *sd, const Evas_Ev
     return ewk_frame_feed_key_down(frame, ev);
 }
 
-static Eina_Bool _ewk_view_smart_key_up(Ewk_View_Smart_Data *sd, const Evas_Event_Key_Up *ev)
+static Eina_Bool _ewk_view_smart_key_up(Ewk_View_Smart_Data* sd, const Evas_Event_Key_Up* ev)
 {
-    Evas_Object *frame = ewk_view_frame_focused_get(sd->self);
+    Evas_Objectframe = ewk_view_frame_focused_get(sd->self);
 
     if (!frame)
         frame = sd->main_frame;
@@ -430,117 +430,117 @@ static Eina_Bool _ewk_view_smart_key_up(Ewk_View_Smart_Data *sd, const Evas_Even
     return ewk_frame_feed_key_up(frame, ev);
 }
 
-static void _ewk_view_smart_add_console_message(Ewk_View_Smart_Data *sd, const char *message, unsigned int lineNumber, const char *sourceID)
+static void _ewk_view_smart_add_console_message(Ewk_View_Smart_Data* sd, const char* message, unsigned int lineNumber, const char* sourceID)
 {
     INF("console message: %s @%d: %s\n", sourceID, lineNumber, message);
 }
 
-static void _ewk_view_smart_run_javascript_alert(Ewk_View_Smart_Data *sd, Evas_Object *frame, const char *message)
+static void _ewk_view_smart_run_javascript_alert(Ewk_View_Smart_Data* sd, Evas_Object* frame, const char* message)
 {
     INF("javascript alert: %s\n", message);
 }
 
-static Eina_Bool _ewk_view_smart_run_javascript_confirm(Ewk_View_Smart_Data *sd, Evas_Object *frame, const char *message)
+static Eina_Bool _ewk_view_smart_run_javascript_confirm(Ewk_View_Smart_Data* sd, Evas_Object* frame, const char* message)
 {
     INF("javascript confirm: %s", message);
     INF("javascript confirm (HARD CODED)? YES");
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_smart_should_interrupt_javascript(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_smart_should_interrupt_javascript(Ewk_View_Smart_Datasd)
 {
     INF("should interrupt javascript?\n"
-            "\t(HARD CODED) NO");
+        "\t(HARD CODED) NO");
     return EINA_FALSE;
 }
 
-static Eina_Bool _ewk_view_smart_run_javascript_prompt(Ewk_View_Smart_Data *sd, Evas_Object *frame, const char *message, const char *defaultValue, char **value)
+static Eina_Bool _ewk_view_smart_run_javascript_prompt(Ewk_View_Smart_Data* sd, Evas_Object* frame, const char* message, const char* defaultValue, char** value)
 {
     *value = strdup("test");
     Eina_Bool ret = EINA_TRUE;
     INF("javascript prompt:\n"
-            "\t      message: %s\n"
-            "\tdefault value: %s\n"
-            "\tgiving answer: %s\n"
-            "\t       button: %s", message, defaultValue, *value, ret?"ok":"cancel");
+        "\t      message: %s\n"
+        "\tdefault value: %s\n"
+        "\tgiving answer: %s\n"
+        "\t       button: %s", message, defaultValue, *value, ret ? "ok" : "cancel");
 
     return ret;
 }
 
 // Event Handling //////////////////////////////////////////////////////
-static void _ewk_view_on_focus_in(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_focus_in(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->focus_in);
     sd->api->focus_in(sd);
 }
 
-static void _ewk_view_on_focus_out(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_focus_out(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->focus_out);
     sd->api->focus_out(sd);
 }
 
-static void _ewk_view_on_mouse_wheel(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_mouse_wheel(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Evas_Event_Mouse_Wheel *ev = (Evas_Event_Mouse_Wheel *)event_info;
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Evas_Event_Mouse_Wheel* ev = (Evas_Event_Mouse_Wheel*)event_info;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->mouse_wheel);
     sd->api->mouse_wheel(sd, ev);
 }
 
-static void _ewk_view_on_mouse_down(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_mouse_down(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Evas_Event_Mouse_Down *ev = (Evas_Event_Mouse_Down *)event_info;
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Evas_Event_Mouse_Down* ev = (Evas_Event_Mouse_Down*)event_info;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->mouse_down);
     sd->api->mouse_down(sd, ev);
 }
 
-static void _ewk_view_on_mouse_up(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_mouse_up(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Evas_Event_Mouse_Up *ev = (Evas_Event_Mouse_Up *)event_info;
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Evas_Event_Mouse_Up* ev = (Evas_Event_Mouse_Up*)event_info;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->mouse_up);
     sd->api->mouse_up(sd, ev);
 }
 
-static void _ewk_view_on_mouse_move(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_mouse_move(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Evas_Event_Mouse_Move *ev = (Evas_Event_Mouse_Move *)event_info;
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Evas_Event_Mouse_Move* ev = (Evas_Event_Mouse_Move*)event_info;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->mouse_move);
     sd->api->mouse_move(sd, ev);
 }
 
-static void _ewk_view_on_key_down(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_key_down(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Evas_Event_Key_Down *ev = (Evas_Event_Key_Down *)event_info;
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Evas_Event_Key_Down* ev = (Evas_Event_Key_Down*)event_info;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->key_down);
     sd->api->key_down(sd, ev);
 }
 
-static void _ewk_view_on_key_up(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_on_key_up(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Evas_Event_Key_Up *ev = (Evas_Event_Key_Up *)event_info;
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Evas_Event_Key_Up* ev = (Evas_Event_Key_Up*)event_info;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->key_up);
     sd->api->key_up(sd, ev);
 }
 
-static WTF::PassRefPtr<WebCore::Frame> _ewk_view_core_frame_new(Ewk_View_Smart_Data *sd, Ewk_View_Private_Data *priv, WebCore::HTMLFrameOwnerElement *owner)
+static WTF::PassRefPtr<WebCore::Frame> _ewk_view_core_frame_new(Ewk_View_Smart_Data* sd, Ewk_View_Private_Data* priv, WebCore::HTMLFrameOwnerElement* owner)
 {
-    WebCore::FrameLoaderClientEfl *flc = new WebCore::FrameLoaderClientEfl(sd->self);
+    WebCore::FrameLoaderClientEflflc = new WebCore::FrameLoaderClientEfl(sd->self);
     if (!flc) {
         CRITICAL("Could not create frame loader client.");
         return 0;
@@ -552,10 +552,10 @@ static WTF::PassRefPtr<WebCore::Frame> _ewk_view_core_frame_new(Ewk_View_Smart_D
 
 static Evas_Smart_Class _parent_sc = EVAS_SMART_CLASS_INIT_NULL;
 
-static Ewk_View_Private_Data *_ewk_view_priv_new(Ewk_View_Smart_Data *sd)
+static Ewk_View_Private_Data* _ewk_view_priv_new(Ewk_View_Smart_Data* sd)
 {
-    Ewk_View_Private_Data *priv =
-        (Ewk_View_Private_Data *)calloc(1, sizeof(Ewk_View_Private_Data));
+    Ewk_View_Private_Datapriv =
+        (Ewk_View_Private_Data*)calloc(1, sizeof(Ewk_View_Private_Data));
     AtomicString s;
     WebCore::KURL url;
 
@@ -611,7 +611,7 @@ static Ewk_View_Private_Data *_ewk_view_priv_new(Ewk_View_Smart_Data *sd)
     priv->settings.user_stylesheet = eina_stringshare_add(url.string().utf8().data());
 
     priv->settings.encoding_default = eina_stringshare_add
-        (priv->page_settings->defaultTextEncodingName().utf8().data());
+                                          (priv->page_settings->defaultTextEncodingName().utf8().data());
     priv->settings.encoding_custom = 0;
 
     s = priv->page_settings->localStorageDatabasePath();
@@ -671,7 +671,7 @@ static Ewk_View_Private_Data *_ewk_view_priv_new(Ewk_View_Smart_Data *sd)
         goto error_main_frame;
     }
 
-    priv->history = ewk_history_new(static_cast<WebCore::BackForwardListImpl *>(priv->page->backForwardList()));
+    priv->history = ewk_history_new(static_cast<WebCore::BackForwardListImpl*>(priv->page->backForwardList()));
     if (!priv->history) {
         CRITICAL("Could not create history instance for view.");
         goto error_history;
@@ -689,7 +689,7 @@ error_page:
     return 0;
 }
 
-static void _ewk_view_priv_del(Ewk_View_Private_Data *priv)
+static void _ewk_view_priv_del(Ewk_View_Private_Datapriv)
 {
     if (!priv)
         return;
@@ -720,16 +720,16 @@ static void _ewk_view_priv_del(Ewk_View_Private_Data *priv)
     free(priv);
 }
 
-static void _ewk_view_smart_add(Evas_Object *o)
+static void _ewk_view_smart_add(Evas_Objecto)
 {
-    const Evas_Smart *smart = evas_object_smart_smart_get(o);
-    const Evas_Smart_Class *sc = evas_smart_class_get(smart);
-    const Ewk_View_Smart_Class *api = (const Ewk_View_Smart_Class *)sc;
+    const Evas_Smartsmart = evas_object_smart_smart_get(o);
+    const Evas_Smart_Classsc = evas_smart_class_get(smart);
+    const Ewk_View_Smart_Class* api = (const Ewk_View_Smart_Class*)sc;
     EINA_SAFETY_ON_NULL_RETURN(api->backing_store_add);
     EWK_VIEW_SD_GET(o, sd);
 
     if (!sd) {
-        sd = (Ewk_View_Smart_Data *)calloc(1, sizeof(Ewk_View_Smart_Data));
+        sd = (Ewk_View_Smart_Data*)calloc(1, sizeof(Ewk_View_Smart_Data));
         if (!sd) {
             CRITICAL("could not allocate Ewk_View_Smart_Data");
             return;
@@ -800,17 +800,17 @@ static void _ewk_view_smart_add(Evas_Object *o)
 #undef CONNECT
 }
 
-static void _ewk_view_smart_del(Evas_Object *o)
+static void _ewk_view_smart_del(Evas_Objecto)
 {
     EWK_VIEW_SD_GET(o, sd);
-    Ewk_View_Private_Data *priv = sd ? sd->_priv : 0;
+    Ewk_View_Private_Datapriv = sd ? sd->_priv : 0;
 
     ewk_view_stop(o);
     _parent_sc.del(o);
     _ewk_view_priv_del(priv);
 }
 
-static void _ewk_view_smart_resize(Evas_Object *o, Evas_Coord w, Evas_Coord h)
+static void _ewk_view_smart_resize(Evas_Objecto, Evas_Coord w, Evas_Coord h)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
 
@@ -821,14 +821,14 @@ static void _ewk_view_smart_resize(Evas_Object *o, Evas_Coord w, Evas_Coord h)
     _ewk_view_smart_changed(sd);
 }
 
-static void _ewk_view_smart_move(Evas_Object *o, Evas_Coord x, Evas_Coord y)
+static void _ewk_view_smart_move(Evas_Objecto, Evas_Coord x, Evas_Coord y)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     sd->changed.position = EINA_TRUE;
     _ewk_view_smart_changed(sd);
 }
 
-static void _ewk_view_smart_calculate(Evas_Object *o)
+static void _ewk_view_smart_calculate(Evas_Objecto)
 {
     EWK_VIEW_SD_GET(o, sd);
     EWK_VIEW_PRIV_GET(sd, priv);
@@ -850,7 +850,7 @@ static void _ewk_view_smart_calculate(Evas_Object *o)
         priv->scrolls.count, priv->repaints.count);
 
     if (sd->changed.size && ((w != sd->view.w) || (h != sd->view.h))) {
-        WebCore::FrameView *view = priv->main_frame->view();
+        WebCore::FrameViewview = priv->main_frame->view();
         if (view) {
             view->resize(w, h);
             view->forceLayout();
@@ -888,13 +888,13 @@ static void _ewk_view_smart_calculate(Evas_Object *o)
     _ewk_view_repaints_flush(priv);
 
     if (sd->changed.frame_rect) {
-        WebCore::FrameView *view = priv->main_frame->view();
+        WebCore::FrameViewview = priv->main_frame->view();
         view->frameRectsChanged(); /* force tree to get position from root */
         sd->changed.frame_rect = EINA_FALSE;
     }
 }
 
-static void _ewk_view_smart_show(Evas_Object *o)
+static void _ewk_view_smart_show(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
 
@@ -903,7 +903,7 @@ static void _ewk_view_smart_show(Evas_Object *o)
     evas_object_show(sd->backing_store);
 }
 
-static void _ewk_view_smart_hide(Evas_Object *o)
+static void _ewk_view_smart_hide(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
 
@@ -911,12 +911,12 @@ static void _ewk_view_smart_hide(Evas_Object *o)
     evas_object_hide(sd->backing_store);
 }
 
-static Eina_Bool _ewk_view_smart_contents_resize(Ewk_View_Smart_Data *sd, int w, int h)
+static Eina_Bool _ewk_view_smart_contents_resize(Ewk_View_Smart_Datasd, int w, int h)
 {
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_smart_zoom_set(Ewk_View_Smart_Data *sd, float zoom, Evas_Coord cx, Evas_Coord cy)
+static Eina_Bool _ewk_view_smart_zoom_set(Ewk_View_Smart_Datasd, float zoom, Evas_Coord cx, Evas_Coord cy)
 {
     double px, py;
     Evas_Coord x, y, w, h;
@@ -944,40 +944,40 @@ static Eina_Bool _ewk_view_smart_zoom_set(Ewk_View_Smart_Data *sd, float zoom, E
     return ret;
 }
 
-static void _ewk_view_smart_flush(Ewk_View_Smart_Data *sd)
+static void _ewk_view_smart_flush(Ewk_View_Smart_Datasd)
 {
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
     _ewk_view_repaints_flush(priv);
     _ewk_view_scrolls_flush(priv);
 }
 
-static Eina_Bool _ewk_view_smart_pre_render_region(Ewk_View_Smart_Data *sd, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
+static Eina_Bool _ewk_view_smart_pre_render_region(Ewk_View_Smart_Datasd, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
 {
     WRN("not supported by engine. sd=%p area=%d,%d+%dx%d, zoom=%f",
         sd, x, y, w, h, zoom);
     return EINA_FALSE;
 }
 
-static Eina_Bool _ewk_view_smart_pre_render_relative_radius(Ewk_View_Smart_Data *sd, unsigned int n, float zoom)
+static Eina_Bool _ewk_view_smart_pre_render_relative_radius(Ewk_View_Smart_Datasd, unsigned int n, float zoom)
 {
     WRN("not supported by engine. sd=%p, n=%u zoom=%f",
         sd, n, zoom);
     return EINA_FALSE;
 }
 
-static void _ewk_view_smart_pre_render_cancel(Ewk_View_Smart_Data *sd)
+static void _ewk_view_smart_pre_render_cancel(Ewk_View_Smart_Datasd)
 {
     WRN("not supported by engine. sd=%p", sd);
 }
 
-static void _ewk_view_zoom_animated_mark_stop(Ewk_View_Smart_Data *sd)
+static void _ewk_view_zoom_animated_mark_stop(Ewk_View_Smart_Datasd)
 {
     sd->animated_zoom.zoom.start = 0.0;
     sd->animated_zoom.zoom.end = 0.0;
     sd->animated_zoom.zoom.current = 0.0;
 }
 
-static void _ewk_view_zoom_animated_finish(Ewk_View_Smart_Data *sd)
+static void _ewk_view_zoom_animated_finish(Ewk_View_Smart_Datasd)
 {
     EWK_VIEW_PRIV_GET(sd, priv);
     ecore_animator_del(priv->animated_zoom.animator);
@@ -986,7 +986,7 @@ static void _ewk_view_zoom_animated_finish(Ewk_View_Smart_Data *sd)
     evas_object_smart_callback_call(sd->self, "zoom,animated,end", 0);
 }
 
-static float _ewk_view_zoom_animated_current(Ewk_View_Private_Data *priv)
+static float _ewk_view_zoom_animated_current(Ewk_View_Private_Datapriv)
 {
     double now = ecore_loop_time_get();
     double delta = now - priv->animated_zoom.time.start;
@@ -1002,9 +1002,9 @@ static float _ewk_view_zoom_animated_current(Ewk_View_Private_Data *priv)
             + priv->animated_zoom.zoom.start);
 }
 
-static Eina_Bool _ewk_view_zoom_animator_cb(void *data)
+static Eina_Bool _ewk_view_zoom_animator_cb(voiddata)
 {
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data *)data;
+    Ewk_View_Smart_Data* sd = (Ewk_View_Smart_Data*)data;
     Evas_Coord cx, cy;
     EWK_VIEW_PRIV_GET(sd, priv);
     double now = ecore_loop_time_get();
@@ -1031,16 +1031,16 @@ static Eina_Bool _ewk_view_zoom_animator_cb(void *data)
     return EINA_TRUE;
 }
 
-static void _ewk_view_zoom_animation_start(Ewk_View_Smart_Data *sd)
+static void _ewk_view_zoom_animation_start(Ewk_View_Smart_Datasd)
 {
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
     if (priv->animated_zoom.animator)
         return;
     priv->animated_zoom.animator = ecore_animator_add
-        (_ewk_view_zoom_animator_cb, sd);
+                                       (_ewk_view_zoom_animator_cb, sd);
 }
 
-static WebCore::ViewportAttributes _ewk_view_viewport_attributes_compute(const Evas_Object *o)
+static WebCore::ViewportAttributes _ewk_view_viewport_attributes_compute(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET(o, sd);
     EWK_VIEW_PRIV_GET(sd, priv);
@@ -1060,26 +1060,26 @@ static WebCore::ViewportAttributes _ewk_view_viewport_attributes_compute(const E
     return attributes;
 }
 
-static Eina_Bool _ewk_view_smart_disable_render(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_smart_disable_render(Ewk_View_Smart_Datasd)
 {
     WRN("not supported by engine. sd=%p", sd);
     return EINA_FALSE;
 }
 
-static Eina_Bool _ewk_view_smart_enable_render(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_smart_enable_render(Ewk_View_Smart_Datasd)
 {
     WRN("not supported by engine. sd=%p", sd);
     return EINA_FALSE;
 }
 
-Eina_Bool ewk_view_base_smart_set(Ewk_View_Smart_Class *api)
+Eina_Bool ewk_view_base_smart_set(Ewk_View_Smart_Classapi)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(api, EINA_FALSE);
 
     if (api->version != EWK_VIEW_SMART_CLASS_VERSION) {
         EINA_LOG_CRIT
             ("Ewk_View_Smart_Class %p is version %lu while %lu was expected.",
-             api, api->version, EWK_VIEW_SMART_CLASS_VERSION);
+            api, api->version, EWK_VIEW_SMART_CLASS_VERSION);
         return EINA_FALSE;
     }
 
@@ -1123,12 +1123,12 @@ Eina_Bool ewk_view_base_smart_set(Ewk_View_Smart_Class *api)
     return EINA_TRUE;
 }
 
-void ewk_view_fixed_layout_size_set(Evas_Object *o, Evas_Coord w, Evas_Coord h)
+void ewk_view_fixed_layout_size_set(Evas_Objecto, Evas_Coord w, Evas_Coord h)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
 
-    WebCore::FrameView *view = priv->main_frame->view();
+    WebCore::FrameViewview = priv->main_frame->view();
     if (w <= 0 && h <= 0) {
         if (!view->useFixedLayout())
             return;
@@ -1147,7 +1147,7 @@ void ewk_view_fixed_layout_size_set(Evas_Object *o, Evas_Coord w, Evas_Coord h)
     view->forceLayout();
 }
 
-void ewk_view_fixed_layout_size_get(const Evas_Object *o, Evas_Coord *w, Evas_Coord *h)
+void ewk_view_fixed_layout_size_get(const Evas_Object* o, Evas_Coord* w, Evas_Coord* h)
 {
     if (w)
         *w = 0;
@@ -1165,14 +1165,14 @@ void ewk_view_fixed_layout_size_get(const Evas_Object *o, Evas_Coord *w, Evas_Co
     }
 }
 
-void ewk_view_theme_set(Evas_Object *o, const char *path)
+void ewk_view_theme_set(Evas_Object* o, const char* path)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
     if (!eina_stringshare_replace(&priv->settings.theme, path))
         return;
 
-    WebCore::FrameView *view = priv->main_frame->view();
+    WebCore::FrameViewview = priv->main_frame->view();
     if (view) {
         view->setEdjeTheme(WTF::String(path));
         priv->page->theme()->themeChanged();
@@ -1180,25 +1180,25 @@ void ewk_view_theme_set(Evas_Object *o, const char *path)
 
 }
 
-const char* ewk_view_theme_get(const Evas_Object *o)
+const char* ewk_view_theme_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.theme;
 }
 
-Evas_Object* ewk_view_frame_main_get(const Evas_Object *o)
+Evas_Object* ewk_view_frame_main_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     return sd->main_frame;
 }
 
-Evas_Object* ewk_view_frame_focused_get(const Evas_Object *o)
+Evas_Object* ewk_view_frame_focused_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
 
-    WebCore::Frame *core = priv->page->focusController()->focusedFrame();
+    WebCore::Framecore = priv->page->focusController()->focusedFrame();
     if (!core)
         return 0;
 
@@ -1208,31 +1208,31 @@ Evas_Object* ewk_view_frame_focused_get(const Evas_Object *o)
     return client->webFrame();
 }
 
-Eina_Bool ewk_view_uri_set(Evas_Object *o, const char *uri)
+Eina_Bool ewk_view_uri_set(Evas_Object* o, const char* uri)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_uri_set(sd->main_frame, uri);
 }
 
-const char *ewk_view_uri_get(const Evas_Object *o)
+const char* ewk_view_uri_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     return ewk_frame_uri_get(sd->main_frame);
 }
 
-const char *ewk_view_title_get(const Evas_Object *o)
+const char* ewk_view_title_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     return ewk_frame_title_get(sd->main_frame);
 }
 
-Eina_Bool ewk_view_editable_get(const Evas_Object *o)
+Eina_Bool ewk_view_editable_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_editable_get(sd->main_frame);
 }
 
-void ewk_view_bg_color_set(Evas_Object *o, int r, int g, int b, int a)
+void ewk_view_bg_color_set(Evas_Objecto, int r, int g, int b, int a)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
@@ -1248,10 +1248,10 @@ void ewk_view_bg_color_set(Evas_Object *o, int r, int g, int b, int a)
 
 #define CHECK_PREMUL_COLOR(c, a)                                        \
     if (c < 0) {                                                        \
-        WRN("Color component "#c" is less than zero (%d).", c);         \
+        WRN("Color component " #c " is less than zero (%d).", c);         \
         c = 0;                                                          \
     } else if (c > a) {                                                 \
-        WRN("Color component "#c" is greater than alpha (%d, alpha=%d).", \
+        WRN("Color component " #c " is greater than alpha (%d, alpha=%d).", \
             c, a);                                                      \
         c = a;                                                          \
     }
@@ -1267,7 +1267,7 @@ void ewk_view_bg_color_set(Evas_Object *o, int r, int g, int b, int a)
 
     sd->api->bg_color_set(sd, r, g, b, a);
 
-    WebCore::FrameView *view = sd->_priv->main_frame->view();
+    WebCore::FrameViewview = sd->_priv->main_frame->view();
     if (view) {
         WebCore::Color color;
 
@@ -1282,7 +1282,7 @@ void ewk_view_bg_color_set(Evas_Object *o, int r, int g, int b, int a)
     }
 }
 
-void ewk_view_bg_color_get(const Evas_Object *o, int *r, int *g, int *b, int *a)
+void ewk_view_bg_color_get(const Evas_Object* o, int* r, int* g, int* b, int* a)
 {
     if (r)
         *r = 0;
@@ -1303,7 +1303,7 @@ void ewk_view_bg_color_get(const Evas_Object *o, int *r, int *g, int *b, int *a)
         *a = sd->bg_color.a;
 }
 
-Eina_Bool ewk_view_text_search(const Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap)
+Eina_Bool ewk_view_text_search(const Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1335,7 +1335,7 @@ Eina_Bool ewk_view_text_search(const Evas_Object *o, const char *string, Eina_Bo
  *
  * @return number of matches.
  */
-unsigned int ewk_view_text_matches_mark(Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit)
+unsigned int ewk_view_text_matches_mark(Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
@@ -1350,7 +1350,7 @@ unsigned int ewk_view_text_matches_mark(Evas_Object *o, const char *string, Eina
     return priv->page->markAllMatchesForText(String::fromUTF8(string), sensitive, highlight, limit);
 }
 
-Eina_Bool ewk_view_text_matches_unmark_all(Evas_Object *o)
+Eina_Bool ewk_view_text_matches_unmark_all(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1358,25 +1358,25 @@ Eina_Bool ewk_view_text_matches_unmark_all(Evas_Object *o)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_text_matches_highlight_set(Evas_Object *o, Eina_Bool highlight)
+Eina_Bool ewk_view_text_matches_highlight_set(Evas_Objecto, Eina_Bool highlight)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_text_matches_highlight_set(sd->main_frame, highlight);
 }
 
-Eina_Bool ewk_view_text_matches_highlight_get(const Evas_Object *o)
+Eina_Bool ewk_view_text_matches_highlight_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_text_matches_highlight_get(sd->main_frame);
 }
 
-Eina_Bool ewk_view_editable_set(Evas_Object *o, Eina_Bool editable)
+Eina_Bool ewk_view_editable_set(Evas_Objecto, Eina_Bool editable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_editable_set(sd->main_frame, editable);
 }
 
-char *ewk_view_selection_get(const Evas_Object *o)
+char* ewk_view_selection_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
@@ -1386,12 +1386,12 @@ char *ewk_view_selection_get(const Evas_Object *o)
     return strdup(s.data());
 }
 
-static Eina_Bool _ewk_view_editor_command(Ewk_View_Private_Data *priv, const char *command, const char *value = 0)
+static Eina_Bool _ewk_view_editor_command(Ewk_View_Private_Data* priv, const char* command, const char* value = 0)
 {
     return priv->page->focusController()->focusedOrMainFrame()->editor()->command(WTF::String::fromUTF8(command)).execute(value);
 }
 
-Eina_Bool ewk_view_execute_editor_command(Evas_Object *o, const Ewk_Editor_Command command, const char *value)
+Eina_Bool ewk_view_execute_editor_command(Evas_Object* o, const Ewk_Editor_Command command, const char* value)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1418,7 +1418,7 @@ Eina_Bool ewk_view_execute_editor_command(Evas_Object *o, const Ewk_Editor_Comma
     }
 }
 
-Eina_Bool ewk_view_context_menu_forward_event(Evas_Object *o, const Evas_Event_Mouse_Down *ev)
+Eina_Bool ewk_view_context_menu_forward_event(Evas_Object* o, const Evas_Event_Mouse_Down* ev)
 {
 #if ENABLE(CONTEXT_MENUS)
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
@@ -1426,7 +1426,7 @@ Eina_Bool ewk_view_context_menu_forward_event(Evas_Object *o, const Evas_Event_M
     Eina_Bool mouse_press_handled = EINA_FALSE;
 
     priv->page->contextMenuController()->clearContextMenu();
-    WebCore::Frame *main_frame = priv->page->mainFrame();
+    WebCore::Framemain_frame = priv->page->mainFrame();
     Evas_Coord x, y;
     evas_object_geometry_get(sd->self, &x, &y, 0, 0);
 
@@ -1454,75 +1454,75 @@ Eina_Bool ewk_view_context_menu_forward_event(Evas_Object *o, const Evas_Event_M
 #endif
 }
 
-double ewk_view_load_progress_get(const Evas_Object *o)
+double ewk_view_load_progress_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, -1.0);
     return priv->page->progress()->estimatedProgress();
 }
 
-Eina_Bool ewk_view_stop(Evas_Object *o)
+Eina_Bool ewk_view_stop(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_stop(sd->main_frame);
 }
 
-Eina_Bool ewk_view_reload(Evas_Object *o)
+Eina_Bool ewk_view_reload(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_reload(sd->main_frame);
 }
 
-Eina_Bool ewk_view_reload_full(Evas_Object *o)
+Eina_Bool ewk_view_reload_full(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_reload_full(sd->main_frame);
 }
 
-Eina_Bool ewk_view_back(Evas_Object *o)
+Eina_Bool ewk_view_back(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_back(sd->main_frame);
 }
 
-Eina_Bool ewk_view_forward(Evas_Object *o)
+Eina_Bool ewk_view_forward(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_forward(sd->main_frame);
 }
 
-Eina_Bool ewk_view_navigate(Evas_Object *o, int steps)
+Eina_Bool ewk_view_navigate(Evas_Objecto, int steps)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_navigate(sd->main_frame, steps);
 }
 
-Eina_Bool ewk_view_back_possible(Evas_Object *o)
+Eina_Bool ewk_view_back_possible(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_back_possible(sd->main_frame);
 }
 
-Eina_Bool ewk_view_forward_possible(Evas_Object *o)
+Eina_Bool ewk_view_forward_possible(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_forward_possible(sd->main_frame);
 }
 
-Eina_Bool ewk_view_navigate_possible(Evas_Object *o, int steps)
+Eina_Bool ewk_view_navigate_possible(Evas_Objecto, int steps)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_navigate_possible(sd->main_frame, steps);
 }
 
-Eina_Bool ewk_view_history_enable_get(const Evas_Object *o)
+Eina_Bool ewk_view_history_enable_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return static_cast<WebCore::BackForwardListImpl*>(priv->page->backForwardList())->enabled();
 }
 
-Eina_Bool ewk_view_history_enable_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_history_enable_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1530,7 +1530,7 @@ Eina_Bool ewk_view_history_enable_set(Evas_Object *o, Eina_Bool enable)
     return EINA_TRUE;
 }
 
-Ewk_History* ewk_view_history_get(const Evas_Object *o)
+Ewk_History* ewk_view_history_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
@@ -1541,13 +1541,13 @@ Ewk_History* ewk_view_history_get(const Evas_Object *o)
     return priv->history;
 }
 
-float ewk_view_zoom_get(const Evas_Object *o)
+float ewk_view_zoom_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0);
     return ewk_frame_zoom_get(sd->main_frame);
 }
 
-Eina_Bool ewk_view_zoom_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas_Coord cy)
+Eina_Bool ewk_view_zoom_set(Evas_Objecto, float zoom, Evas_Coord cx, Evas_Coord cy)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET(sd, priv);
@@ -1573,13 +1573,13 @@ Eina_Bool ewk_view_zoom_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas_Coor
     return sd->api->zoom_set(sd, zoom, cx, cy);
 }
 
-Eina_Bool ewk_view_zoom_weak_smooth_scale_get(const Evas_Object *o)
+Eina_Bool ewk_view_zoom_weak_smooth_scale_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return sd->zoom_weak_smooth_scale;
 }
 
-void ewk_view_zoom_weak_smooth_scale_set(Evas_Object *o, Eina_Bool smooth_scale)
+void ewk_view_zoom_weak_smooth_scale_set(Evas_Objecto, Eina_Bool smooth_scale)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     smooth_scale = !!smooth_scale;
@@ -1591,7 +1591,7 @@ void ewk_view_zoom_weak_smooth_scale_set(Evas_Object *o, Eina_Bool smooth_scale)
     sd->api->zoom_weak_smooth_scale_set(sd, smooth_scale);
 }
 
-Eina_Bool ewk_view_zoom_weak_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas_Coord cy)
+Eina_Bool ewk_view_zoom_weak_set(Evas_Objecto, float zoom, Evas_Coord cx, Evas_Coord cy)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET(sd, priv);
@@ -1619,35 +1619,35 @@ Eina_Bool ewk_view_zoom_weak_set(Evas_Object *o, float zoom, Evas_Coord cx, Evas
     return sd->api->zoom_weak_set(sd, zoom, cx, cy);
 }
 
-Eina_Bool ewk_view_zoom_animated_mark_start(Evas_Object *o, float zoom)
+Eina_Bool ewk_view_zoom_animated_mark_start(Evas_Objecto, float zoom)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     sd->animated_zoom.zoom.start = zoom;
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_zoom_animated_mark_end(Evas_Object *o, float zoom)
+Eina_Bool ewk_view_zoom_animated_mark_end(Evas_Objecto, float zoom)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     sd->animated_zoom.zoom.end = zoom;
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_zoom_animated_mark_current(Evas_Object *o, float zoom)
+Eina_Bool ewk_view_zoom_animated_mark_current(Evas_Objecto, float zoom)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     sd->animated_zoom.zoom.current = zoom;
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_zoom_animated_mark_stop(Evas_Object *o)
+Eina_Bool ewk_view_zoom_animated_mark_stop(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     _ewk_view_zoom_animated_mark_stop(sd);
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_zoom_animated_set(Evas_Object *o, float zoom, float duration, Evas_Coord cx, Evas_Coord cy)
+Eina_Bool ewk_view_zoom_animated_set(Evas_Objecto, float zoom, float duration, Evas_Coord cx, Evas_Coord cy)
 {
     double now;
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
@@ -1696,19 +1696,19 @@ Eina_Bool ewk_view_zoom_animated_set(Evas_Object *o, float zoom, float duration,
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_zoom_text_only_get(const Evas_Object *o)
+Eina_Bool ewk_view_zoom_text_only_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_zoom_text_only_get(sd->main_frame);
 }
 
-Eina_Bool ewk_view_zoom_text_only_set(Evas_Object *o, Eina_Bool setting)
+Eina_Bool ewk_view_zoom_text_only_set(Evas_Objecto, Eina_Bool setting)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     return ewk_frame_zoom_text_only_set(sd->main_frame, setting);
 }
 
-Eina_Bool ewk_view_pre_render_region(Evas_Object *o, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
+Eina_Bool ewk_view_pre_render_region(Evas_Objecto, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1751,7 +1751,7 @@ Eina_Bool ewk_view_pre_render_region(Evas_Object *o, Evas_Coord x, Evas_Coord y,
     return sd->api->pre_render_region(sd, x, y, w, h, zoom);
 }
 
-Eina_Bool ewk_view_pre_render_relative_radius(Evas_Object *o, unsigned int n)
+Eina_Bool ewk_view_pre_render_relative_radius(Evas_Objecto, unsigned int n)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1765,42 +1765,42 @@ Eina_Bool ewk_view_pre_render_relative_radius(Evas_Object *o, unsigned int n)
     return sd->api->pre_render_relative_radius(sd, n, cur_zoom);
 }
 
-unsigned int ewk_view_imh_get(const Evas_Object *o)
+unsigned int ewk_view_imh_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->imh;
 }
 
-void ewk_view_pre_render_cancel(Evas_Object *o)
+void ewk_view_pre_render_cancel(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EINA_SAFETY_ON_NULL_RETURN(sd->api->pre_render_cancel);
     sd->api->pre_render_cancel(sd);
 }
 
-Eina_Bool ewk_view_enable_render(const Evas_Object *o)
+Eina_Bool ewk_view_enable_render(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->api->enable_render, EINA_FALSE);
     return sd->api->enable_render(sd);
 }
 
-Eina_Bool ewk_view_disable_render(const Evas_Object *o)
+Eina_Bool ewk_view_disable_render(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->api->disable_render, EINA_FALSE);
     return sd->api->disable_render(sd);
 }
 
-const char *ewk_view_setting_user_agent_get(const Evas_Object *o)
+const char* ewk_view_setting_user_agent_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.user_agent;
 }
 
-Eina_Bool ewk_view_setting_user_agent_set(Evas_Object *o, const char *user_agent)
+Eina_Bool ewk_view_setting_user_agent_set(Evas_Object* o, const char* user_agent)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1811,14 +1811,14 @@ Eina_Bool ewk_view_setting_user_agent_set(Evas_Object *o, const char *user_agent
     return EINA_TRUE;
 }
 
-const char *ewk_view_setting_user_stylesheet_get(const Evas_Object *o)
+const char* ewk_view_setting_user_stylesheet_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.user_stylesheet;
 }
 
-Eina_Bool ewk_view_setting_user_stylesheet_set(Evas_Object *o, const char *uri)
+Eina_Bool ewk_view_setting_user_stylesheet_set(Evas_Object* o, const char* uri)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1829,14 +1829,14 @@ Eina_Bool ewk_view_setting_user_stylesheet_set(Evas_Object *o, const char *uri)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_auto_load_images_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_auto_load_images_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.auto_load_images;
 }
 
-Eina_Bool ewk_view_setting_auto_load_images_set(Evas_Object *o, Eina_Bool automatic)
+Eina_Bool ewk_view_setting_auto_load_images_set(Evas_Objecto, Eina_Bool automatic)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1848,14 +1848,14 @@ Eina_Bool ewk_view_setting_auto_load_images_set(Evas_Object *o, Eina_Bool automa
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_auto_shrink_images_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_auto_shrink_images_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.auto_shrink_images;
 }
 
-Eina_Bool ewk_view_setting_auto_shrink_images_set(Evas_Object *o, Eina_Bool automatic)
+Eina_Bool ewk_view_setting_auto_shrink_images_set(Evas_Objecto, Eina_Bool automatic)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1867,14 +1867,14 @@ Eina_Bool ewk_view_setting_auto_shrink_images_set(Evas_Object *o, Eina_Bool auto
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_enable_auto_resize_window_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_enable_auto_resize_window_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.enable_auto_resize_window;
 }
 
-Eina_Bool ewk_view_setting_enable_auto_resize_window_set(Evas_Object *o, Eina_Bool resizable)
+Eina_Bool ewk_view_setting_enable_auto_resize_window_set(Evas_Objecto, Eina_Bool resizable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1882,14 +1882,14 @@ Eina_Bool ewk_view_setting_enable_auto_resize_window_set(Evas_Object *o, Eina_Bo
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_enable_scripts_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_enable_scripts_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.enable_scripts;
 }
 
-Eina_Bool ewk_view_setting_enable_scripts_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_enable_scripts_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1901,14 +1901,14 @@ Eina_Bool ewk_view_setting_enable_scripts_set(Evas_Object *o, Eina_Bool enable)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_enable_plugins_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_enable_plugins_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.enable_plugins;
 }
 
-Eina_Bool ewk_view_setting_enable_plugins_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_enable_plugins_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1920,14 +1920,14 @@ Eina_Bool ewk_view_setting_enable_plugins_set(Evas_Object *o, Eina_Bool enable)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_enable_frame_flattening_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_enable_frame_flattening_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.enable_frame_flattening;
 }
 
-Eina_Bool ewk_view_setting_enable_frame_flattening_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_enable_frame_flattening_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1939,14 +1939,14 @@ Eina_Bool ewk_view_setting_enable_frame_flattening_set(Evas_Object *o, Eina_Bool
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_scripts_window_open_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_scripts_window_open_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.scripts_window_open;
 }
 
-Eina_Bool ewk_view_setting_scripts_window_open_set(Evas_Object *o, Eina_Bool allow)
+Eina_Bool ewk_view_setting_scripts_window_open_set(Evas_Objecto, Eina_Bool allow)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1958,14 +1958,14 @@ Eina_Bool ewk_view_setting_scripts_window_open_set(Evas_Object *o, Eina_Bool all
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_scripts_can_close_windows_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_scripts_can_close_windows_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.scripts_can_close_windows;
 }
 
-Eina_Bool ewk_view_setting_scripts_can_close_windows_set(Evas_Object *o, Eina_Bool allow)
+Eina_Bool ewk_view_setting_scripts_can_close_windows_set(Evas_Objecto, Eina_Bool allow)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1977,14 +1977,14 @@ Eina_Bool ewk_view_setting_scripts_can_close_windows_set(Evas_Object *o, Eina_Bo
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_resizable_textareas_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_resizable_textareas_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.resizable_textareas;
 }
 
-Eina_Bool ewk_view_setting_resizable_textareas_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_resizable_textareas_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -1996,14 +1996,14 @@ Eina_Bool ewk_view_setting_resizable_textareas_set(Evas_Object *o, Eina_Bool ena
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_private_browsing_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_private_browsing_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.private_browsing;
 }
 
-Eina_Bool ewk_view_setting_private_browsing_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_private_browsing_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2015,14 +2015,14 @@ Eina_Bool ewk_view_setting_private_browsing_set(Evas_Object *o, Eina_Bool enable
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_offline_app_cache_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_offline_app_cache_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.offline_app_cache;
 }
 
-Eina_Bool ewk_view_setting_offline_app_cache_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_offline_app_cache_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2035,14 +2035,14 @@ Eina_Bool ewk_view_setting_offline_app_cache_set(Evas_Object *o, Eina_Bool enabl
 }
 
 
-Eina_Bool ewk_view_setting_caret_browsing_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_caret_browsing_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.caret_browsing;
 }
 
-Eina_Bool ewk_view_setting_caret_browsing_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_caret_browsing_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2054,7 +2054,7 @@ Eina_Bool ewk_view_setting_caret_browsing_set(Evas_Object *o, Eina_Bool enable)
     return EINA_TRUE;
 }
 
-const char *ewk_view_setting_encoding_custom_get(const Evas_Object *o)
+const char* ewk_view_setting_encoding_custom_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
@@ -2070,27 +2070,27 @@ const char *ewk_view_setting_encoding_custom_get(const Evas_Object *o)
     return priv->settings.encoding_custom;
 }
 
-Eina_Bool ewk_view_setting_encoding_custom_set(Evas_Object *o, const char *encoding)
+Eina_Bool ewk_view_setting_encoding_custom_set(Evas_Object* o, const char* encoding)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     Evas_Object* main_frame = ewk_view_frame_main_get(o);
     WebCore::Frame* core_frame = ewk_frame_core_get(main_frame);
-DBG("%s", encoding);
+    DBG("%s", encoding);
     eina_stringshare_replace(&priv->settings.encoding_custom, encoding);
     core_frame->loader()->reloadWithOverrideEncoding(String::fromUTF8(encoding));
 
     return EINA_TRUE;
 }
 
-const char *ewk_view_setting_encoding_default_get(const Evas_Object *o)
+const char* ewk_view_setting_encoding_default_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.encoding_default;
 }
 
-Eina_Bool ewk_view_setting_encoding_default_set(Evas_Object *o, const char *encoding)
+Eina_Bool ewk_view_setting_encoding_default_set(Evas_Object* o, const char* encoding)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2099,7 +2099,7 @@ Eina_Bool ewk_view_setting_encoding_default_set(Evas_Object *o, const char *enco
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_encoding_detector_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_encoding_detector_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2111,21 +2111,21 @@ Eina_Bool ewk_view_setting_encoding_detector_set(Evas_Object *o, Eina_Bool enabl
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_encoding_detector_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_encoding_detector_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.encoding_detector;
 }
 
-Eina_Bool ewk_view_setting_enable_developer_extras_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_enable_developer_extras_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.enable_developer_extras;
 }
 
-Eina_Bool ewk_view_setting_enable_developer_extras_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_enable_developer_extras_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2137,14 +2137,14 @@ Eina_Bool ewk_view_setting_enable_developer_extras_set(Evas_Object *o, Eina_Bool
     return EINA_TRUE;
 }
 
-int ewk_view_setting_font_minimum_size_get(const Evas_Object *o)
+int ewk_view_setting_font_minimum_size_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.font_minimum_size;
 }
 
-Eina_Bool ewk_view_setting_font_minimum_size_set(Evas_Object *o, int size)
+Eina_Bool ewk_view_setting_font_minimum_size_set(Evas_Objecto, int size)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2155,14 +2155,14 @@ Eina_Bool ewk_view_setting_font_minimum_size_set(Evas_Object *o, int size)
     return EINA_TRUE;
 }
 
-int ewk_view_setting_font_minimum_logical_size_get(const Evas_Object *o)
+int ewk_view_setting_font_minimum_logical_size_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.font_minimum_logical_size;
 }
 
-Eina_Bool ewk_view_setting_font_minimum_logical_size_set(Evas_Object *o, int size)
+Eina_Bool ewk_view_setting_font_minimum_logical_size_set(Evas_Objecto, int size)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2173,14 +2173,14 @@ Eina_Bool ewk_view_setting_font_minimum_logical_size_set(Evas_Object *o, int siz
     return EINA_TRUE;
 }
 
-int ewk_view_setting_font_default_size_get(const Evas_Object *o)
+int ewk_view_setting_font_default_size_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.font_default_size;
 }
 
-Eina_Bool ewk_view_setting_font_default_size_set(Evas_Object *o, int size)
+Eina_Bool ewk_view_setting_font_default_size_set(Evas_Objecto, int size)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2191,14 +2191,14 @@ Eina_Bool ewk_view_setting_font_default_size_set(Evas_Object *o, int size)
     return EINA_TRUE;
 }
 
-int ewk_view_setting_font_monospace_size_get(const Evas_Object *o)
+int ewk_view_setting_font_monospace_size_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.font_monospace_size;
 }
 
-Eina_Bool ewk_view_setting_font_monospace_size_set(Evas_Object *o, int size)
+Eina_Bool ewk_view_setting_font_monospace_size_set(Evas_Objecto, int size)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2209,7 +2209,7 @@ Eina_Bool ewk_view_setting_font_monospace_size_set(Evas_Object *o, int size)
     return EINA_TRUE;
 }
 
-const char *ewk_view_font_family_name_get(const Evas_Object *o, Ewk_Font_Family font_family)
+const char* ewk_view_font_family_name_get(const Evas_Object* o, Ewk_Font_Family font_family)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
@@ -2231,7 +2231,7 @@ const char *ewk_view_font_family_name_get(const Evas_Object *o, Ewk_Font_Family
     return 0;
 }
 
-Eina_Bool ewk_view_font_family_name_set(Evas_Object *o, Ewk_Font_Family font_family, const char *name)
+Eina_Bool ewk_view_font_family_name_set(Evas_Object* o, Ewk_Font_Family font_family, const char* name)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2268,14 +2268,14 @@ Eina_Bool ewk_view_font_family_name_set(Evas_Object *o, Ewk_Font_Family font_fam
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_spatial_navigation_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_spatial_navigation_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.spatial_navigation;
 }
 
-Eina_Bool ewk_view_setting_spatial_navigation_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_spatial_navigation_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2287,14 +2287,14 @@ Eina_Bool ewk_view_setting_spatial_navigation_set(Evas_Object *o, Eina_Bool enab
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_local_storage_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_local_storage_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.local_storage;
 }
 
-Eina_Bool ewk_view_setting_local_storage_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_local_storage_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2306,14 +2306,14 @@ Eina_Bool ewk_view_setting_local_storage_set(Evas_Object *o, Eina_Bool enable)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_page_cache_get(const Evas_Object *o)
+Eina_Bool ewk_view_setting_page_cache_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.page_cache;
 }
 
-Eina_Bool ewk_view_setting_page_cache_set(Evas_Object *o, Eina_Bool enable)
+Eina_Bool ewk_view_setting_page_cache_set(Evas_Objecto, Eina_Bool enable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2325,14 +2325,14 @@ Eina_Bool ewk_view_setting_page_cache_set(Evas_Object *o, Eina_Bool enable)
     return EINA_TRUE;
 }
 
-const char* ewk_view_setting_local_storage_database_path_get(const Evas_Object *o)
+const char* ewk_view_setting_local_storage_database_path_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
     return priv->settings.local_storage_database_path;
 }
 
-Eina_Bool ewk_view_setting_local_storage_database_path_set(Evas_Object *o, const char *path)
+Eina_Bool ewk_view_setting_local_storage_database_path_set(Evas_Object* o, const char* path)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2341,7 +2341,7 @@ Eina_Bool ewk_view_setting_local_storage_database_path_set(Evas_Object *o, const
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_setting_minimum_timer_interval_set(Evas_Object *o, double interval)
+Eina_Bool ewk_view_setting_minimum_timer_interval_set(Evas_Objecto, double interval)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -2352,14 +2352,14 @@ Eina_Bool ewk_view_setting_minimum_timer_interval_set(Evas_Object *o, double int
     return EINA_TRUE;
 }
 
-double ewk_view_setting_minimum_timer_interval_get(const Evas_Object *o)
+double ewk_view_setting_minimum_timer_interval_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
     return priv->settings.dom_timer_interval;
 }
 
-Ewk_View_Smart_Data *ewk_view_smart_data_get(const Evas_Object *o)
+Ewk_View_Smart_Data* ewk_view_smart_data_get(const Evas_Object* o)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     return sd;
@@ -2382,7 +2382,7 @@ Ewk_View_Smart_Data *ewk_view_smart_data_get(const Evas_Object *o)
  * @note this is not for general use but just for subclasses that want
  *       to define their own backing store.
  */
-const Eina_Rectangle *ewk_view_repaints_get(const Ewk_View_Private_Data *priv, size_t *count)
+const Eina_Rectangle* ewk_view_repaints_get(const Ewk_View_Private_Data* priv, size_t* count)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(count, 0);
     if (count)
@@ -2410,7 +2410,7 @@ const Eina_Rectangle *ewk_view_repaints_get(const Ewk_View_Private_Data *priv, s
  * @note this is not for general use but just for subclasses that want
  *       to define their own backing store.
  */
-const Ewk_Scroll_Request *ewk_view_scroll_requests_get(const Ewk_View_Private_Data *priv, size_t *count)
+const Ewk_Scroll_Request* ewk_view_scroll_requests_get(const Ewk_View_Private_Data* priv, size_t* count)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(count, 0);
     if (count)
@@ -2435,7 +2435,7 @@ const Ewk_Scroll_Request *ewk_view_scroll_requests_get(const Ewk_View_Private_Da
  * @note this is not for general use but just for subclasses that want
  *       to define their own backing store.
  */
-void ewk_view_repaint_add(Ewk_View_Private_Data *priv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h)
+void ewk_view_repaint_add(Ewk_View_Private_Datapriv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h)
 {
     EINA_SAFETY_ON_NULL_RETURN(priv);
     _ewk_view_repaint_add(priv, x, y, w, h);
@@ -2449,11 +2449,11 @@ void ewk_view_repaint_add(Ewk_View_Private_Data *priv, Evas_Coord x, Evas_Coord
  * @note this is not for general use but just for subclasses that want
  *       to define their own backing store.
  */
-void ewk_view_layout_if_needed_recursive(Ewk_View_Private_Data *priv)
+void ewk_view_layout_if_needed_recursive(Ewk_View_Private_Datapriv)
 {
     EINA_SAFETY_ON_NULL_RETURN(priv);
 
-    WebCore::FrameView *v = priv->main_frame->view();
+    WebCore::FrameViewv = priv->main_frame->view();
     if (!v) {
         ERR("no main frame view");
         return;
@@ -2461,7 +2461,7 @@ void ewk_view_layout_if_needed_recursive(Ewk_View_Private_Data *priv)
     v->updateLayoutAndStyleIfNeededRecursive();
 }
 
-void ewk_view_scrolls_process(Ewk_View_Smart_Data *sd)
+void ewk_view_scrolls_process(Ewk_View_Smart_Datasd)
 {
     EINA_SAFETY_ON_NULL_RETURN(sd);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
@@ -2479,19 +2479,19 @@ void ewk_view_scrolls_process(Ewk_View_Smart_Data *sd)
  *       to define their own backing store.
  */
 struct _Ewk_View_Paint_Context {
-    WebCore::GraphicsContext *gc;
-    WebCore::FrameView *view;
-    cairo_t *cr;
+    WebCore::GraphicsContextgc;
+    WebCore::FrameViewview;
+    cairo_tcr;
 };
 
-Ewk_View_Paint_Context *ewk_view_paint_context_new(Ewk_View_Private_Data *priv, cairo_t *cr)
+Ewk_View_Paint_Context* ewk_view_paint_context_new(Ewk_View_Private_Data* priv, cairo_t* cr)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(priv, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(cr, 0);
     EINA_SAFETY_ON_NULL_RETURN_VAL(priv->main_frame, 0);
-    WebCore::FrameView *view = priv->main_frame->view();
+    WebCore::FrameViewview = priv->main_frame->view();
     EINA_SAFETY_ON_NULL_RETURN_VAL(view, 0);
-    Ewk_View_Paint_Context *ctxt = (Ewk_View_Paint_Context *)malloc(sizeof(*ctxt));
+    Ewk_View_Paint_Context* ctxt = (Ewk_View_Paint_Context*)malloc(sizeof(*ctxt));
     EINA_SAFETY_ON_NULL_RETURN_VAL(ctxt, 0);
 
     ctxt->gc = new WebCore::GraphicsContext(cr);
@@ -2504,7 +2504,7 @@ Ewk_View_Paint_Context *ewk_view_paint_context_new(Ewk_View_Private_Data *priv,
     return ctxt;
 }
 
-void ewk_view_paint_context_free(Ewk_View_Paint_Context *ctxt)
+void ewk_view_paint_context_free(Ewk_View_Paint_Contextctxt)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
     delete ctxt->gc;
@@ -2512,28 +2512,28 @@ void ewk_view_paint_context_free(Ewk_View_Paint_Context *ctxt)
     free(ctxt);
 }
 
-void ewk_view_paint_context_save(Ewk_View_Paint_Context *ctxt)
+void ewk_view_paint_context_save(Ewk_View_Paint_Contextctxt)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
     cairo_save(ctxt->cr);
     ctxt->gc->save();
 }
 
-void ewk_view_paint_context_restore(Ewk_View_Paint_Context *ctxt)
+void ewk_view_paint_context_restore(Ewk_View_Paint_Contextctxt)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
     ctxt->gc->restore();
     cairo_restore(ctxt->cr);
 }
 
-void ewk_view_paint_context_clip(Ewk_View_Paint_Context *ctxt, const Eina_Rectangle *area)
+void ewk_view_paint_context_clip(Ewk_View_Paint_Context* ctxt, const Eina_Rectangle* area)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
     EINA_SAFETY_ON_NULL_RETURN(area);
     ctxt->gc->clip(WebCore::IntRect(area->x, area->y, area->w, area->h));
 }
 
-void ewk_view_paint_context_paint(Ewk_View_Paint_Context *ctxt, const Eina_Rectangle *area)
+void ewk_view_paint_context_paint(Ewk_View_Paint_Context* ctxt, const Eina_Rectangle* area)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
     EINA_SAFETY_ON_NULL_RETURN(area);
@@ -2545,7 +2545,7 @@ void ewk_view_paint_context_paint(Ewk_View_Paint_Context *ctxt, const Eina_Recta
     ctxt->view->paint(ctxt->gc, rect);
 }
 
-void ewk_view_paint_context_paint_contents(Ewk_View_Paint_Context *ctxt, const Eina_Rectangle *area)
+void ewk_view_paint_context_paint_contents(Ewk_View_Paint_Context* ctxt, const Eina_Rectangle* area)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
     EINA_SAFETY_ON_NULL_RETURN(area);
@@ -2558,21 +2558,21 @@ void ewk_view_paint_context_paint_contents(Ewk_View_Paint_Context *ctxt, const E
     ctxt->view->paintContents(ctxt->gc, rect);
 }
 
-void ewk_view_paint_context_scale(Ewk_View_Paint_Context *ctxt, float scale_x, float scale_y)
+void ewk_view_paint_context_scale(Ewk_View_Paint_Contextctxt, float scale_x, float scale_y)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
 
     ctxt->gc->scale(WebCore::FloatSize(scale_x, scale_y));
 }
 
-void ewk_view_paint_context_translate(Ewk_View_Paint_Context *ctxt, float x, float y)
+void ewk_view_paint_context_translate(Ewk_View_Paint_Contextctxt, float x, float y)
 {
     EINA_SAFETY_ON_NULL_RETURN(ctxt);
 
     ctxt->gc->translate(x, y);
 }
 
-Eina_Bool ewk_view_paint(Ewk_View_Private_Data *priv, cairo_t *cr, const Eina_Rectangle *area)
+Eina_Bool ewk_view_paint(Ewk_View_Private_Data* priv, cairo_t* cr, const Eina_Rectangle* area)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(priv, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(cr, EINA_FALSE);
@@ -2597,7 +2597,7 @@ Eina_Bool ewk_view_paint(Ewk_View_Private_Data *priv, cairo_t *cr, const Eina_Re
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_paint_contents(Ewk_View_Private_Data *priv, cairo_t *cr, const Eina_Rectangle *area)
+Eina_Bool ewk_view_paint_contents(Ewk_View_Private_Data* priv, cairo_t* cr, const Eina_Rectangle* area)
 {
     EINA_SAFETY_ON_NULL_RETURN_VAL(priv, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(cr, EINA_FALSE);
@@ -2628,7 +2628,7 @@ Eina_Bool ewk_view_paint_contents(Ewk_View_Private_Data *priv, cairo_t *cr, cons
  *
  * Emits signal: "ready" with no parameters.
  */
-void ewk_view_ready(Evas_Object *o)
+void ewk_view_ready(Evas_Objecto)
 {
     DBG("o=%p", o);
     evas_object_smart_callback_call(o, "ready", 0);
@@ -2642,7 +2642,7 @@ void ewk_view_ready(Evas_Object *o)
  * Emits signal: "inputmethod,changed" with a boolean indicating whether it's
  * enabled or not.
  */
-void ewk_view_input_method_state_set(Evas_Object *o, Eina_Bool active)
+void ewk_view_input_method_state_set(Evas_Objecto, Eina_Bool active)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EWK_VIEW_PRIV_GET(sd, priv);
@@ -2671,7 +2671,7 @@ void ewk_view_input_method_state_set(Evas_Object *o, Eina_Bool active)
         }
     }
 
-    evas_object_smart_callback_call(o, "inputmethod,changed", (void *)active);
+    evas_object_smart_callback_call(o, "inputmethod,changed", (void*)active);
 }
 
 /**
@@ -2680,10 +2680,10 @@ void ewk_view_input_method_state_set(Evas_Object *o, Eina_Bool active)
  *
  * Emits signal: "title,changed" with pointer to new title string.
  */
-void ewk_view_title_set(Evas_Object *o, const char *title)
+void ewk_view_title_set(Evas_Object* o, const char* title)
 {
     DBG("o=%p, title=%s", o, title ? title : "(null)");
-    evas_object_smart_callback_call(o, "title,changed", (void *)title);
+    evas_object_smart_callback_call(o, "title,changed", (void*)title);
 }
 
 /**
@@ -2692,12 +2692,12 @@ void ewk_view_title_set(Evas_Object *o, const char *title)
  *
  * Emits signal: "uri,changed" with pointer to the new uri string.
  */
-void ewk_view_uri_changed(Evas_Object *o)
+void ewk_view_uri_changed(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
-    const char *uri = ewk_frame_uri_get(sd->main_frame);
+    const charuri = ewk_frame_uri_get(sd->main_frame);
     DBG("o=%p, uri=%s", o, uri ? uri : "(null)");
-    evas_object_smart_callback_call(o, "uri,changed", (void *)uri);
+    evas_object_smart_callback_call(o, "uri,changed", (void*)uri);
 }
 
 /**
@@ -2708,7 +2708,7 @@ void ewk_view_uri_changed(Evas_Object *o)
  *
  * Emits signal: "load,started" with no parameters.
  */
-void ewk_view_load_started(Evas_Object *o)
+void ewk_view_load_started(Evas_Objecto)
 {
     DBG("o=%p", o);
     evas_object_smart_callback_call(o, "load,started", 0);
@@ -2721,10 +2721,10 @@ void ewk_view_load_started(Evas_Object *o)
  *
  * Emits signal: "load,started" on main frame with no parameters.
  */
-void ewk_view_frame_main_load_started(Evas_Object *o)
+void ewk_view_frame_main_load_started(Evas_Objecto)
 {
     DBG("o=%p", o);
-    Evas_Object *frame = ewk_view_frame_main_get(o);
+    Evas_Objectframe = ewk_view_frame_main_get(o);
     evas_object_smart_callback_call(frame, "load,started", 0);
 }
 
@@ -2736,7 +2736,7 @@ void ewk_view_frame_main_load_started(Evas_Object *o)
  *
  * Emits signal: "load,provisional" on View with no parameters.
  */
-void ewk_view_load_provisional(Evas_Object *o)
+void ewk_view_load_provisional(Evas_Objecto)
 {
     DBG("o=%p", o);
     evas_object_smart_callback_call(o, "load,provisional", 0);
@@ -2750,7 +2750,7 @@ void ewk_view_load_provisional(Evas_Object *o)
  *
  * Emits signal: "load,newwindow,show" on view with no parameters.
  */
-void ewk_view_load_show(Evas_Object *o)
+void ewk_view_load_show(Evas_Objecto)
 {
     DBG("o=%p", o);
     evas_object_smart_callback_call(o, "load,newwindow,show", 0);
@@ -2763,7 +2763,7 @@ void ewk_view_load_show(Evas_Object *o)
  *
  * @param o View.
  */
-void ewk_view_frame_main_cleared(Evas_Object *o)
+void ewk_view_frame_main_cleared(Evas_Objecto)
 {
     DBG("o=%p", o);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
@@ -2779,10 +2779,10 @@ void ewk_view_frame_main_cleared(Evas_Object *o)
  *
  * Emits signal: "icon,received" with no parameters.
  */
-void ewk_view_frame_main_icon_received(Evas_Object *o)
+void ewk_view_frame_main_icon_received(Evas_Objecto)
 {
     DBG("o=%p", o);
-    Evas_Object *frame = ewk_view_frame_main_get(o);
+    Evas_Objectframe = ewk_view_frame_main_get(o);
     evas_object_smart_callback_call(frame, "icon,received", 0);
 }
 
@@ -2796,10 +2796,10 @@ void ewk_view_frame_main_icon_received(Evas_Object *o)
  * @note there should not be any error stuff here, but trying to be
  *       compatible with previous WebKit.
  */
-void ewk_view_load_finished(Evas_Object *o, const Ewk_Frame_Load_Error *error)
+void ewk_view_load_finished(Evas_Object* o, const Ewk_Frame_Load_Error* error)
 {
     DBG("o=%p, error=%p", o, error);
-    evas_object_smart_callback_call(o, "load,finished", (void *)error);
+    evas_object_smart_callback_call(o, "load,finished", (void*)error);
 }
 
 /**
@@ -2808,10 +2808,10 @@ void ewk_view_load_finished(Evas_Object *o, const Ewk_Frame_Load_Error *error)
  *
  * Emits signal: "load,error" with pointer to Ewk_Frame_Load_Error.
  */
-void ewk_view_load_error(Evas_Object *o, const Ewk_Frame_Load_Error *error)
+void ewk_view_load_error(Evas_Object* o, const Ewk_Frame_Load_Error* error)
 {
     DBG("o=%p, error=%p", o, error);
-    evas_object_smart_callback_call(o, "load,error", (void *)error);
+    evas_object_smart_callback_call(o, "load,error", (void*)error);
 }
 
 /**
@@ -2820,7 +2820,7 @@ void ewk_view_load_error(Evas_Object *o, const Ewk_Frame_Load_Error *error)
  *
  * Emits signal: "load,progress" with pointer to a double from 0.0 to 1.0.
  */
-void ewk_view_load_progress_changed(Evas_Object *o)
+void ewk_view_load_progress_changed(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
@@ -2842,7 +2842,7 @@ void ewk_view_load_progress_changed(Evas_Object *o)
  *
  * Emits signal: "restore" with frame.
  */
-void ewk_view_restore_state(Evas_Object *o, Evas_Object *frame)
+void ewk_view_restore_state(Evas_Object* o, Evas_Object* frame)
 {
     evas_object_smart_callback_call(o, "restore", frame);
 }
@@ -2868,14 +2868,14 @@ void ewk_view_restore_state(Evas_Object *o, Evas_Object *frame)
  *
  * @see ewk_window_features_ref().
  */
-Evas_Object *ewk_view_window_create(Evas_Object *o, Eina_Bool javascript, const WebCore::WindowFeatures *coreFeatures)
+Evas_Object* ewk_view_window_create(Evas_Object* o, Eina_Bool javascript, const WebCore::WindowFeatures* coreFeatures)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
 
     if (!sd->api->window_create)
         return o;
 
-    Ewk_Window_Features *window_features = ewk_window_features_new_from_core(coreFeatures);
+    Ewk_Window_Featureswindow_features = ewk_window_features_new_from_core(coreFeatures);
     if (!window_features)
         return 0;
 
@@ -2896,7 +2896,7 @@ Evas_Object *ewk_view_window_create(Evas_Object *o, Eina_Bool javascript, const
  *
  * @param o View to be closed.
  */
-void ewk_view_window_close(Evas_Object *o)
+void ewk_view_window_close(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
 
@@ -2912,7 +2912,7 @@ void ewk_view_window_close(Evas_Object *o)
  *
  * Emits signal: "link,hover,in"
  */
-void ewk_view_mouse_link_hover_in(Evas_Object *o, void *data)
+void ewk_view_mouse_link_hover_in(Evas_Object* o, void* data)
 {
     evas_object_smart_callback_call(o, "link,hover,in", data);
 }
@@ -2923,7 +2923,7 @@ void ewk_view_mouse_link_hover_in(Evas_Object *o, void *data)
  *
  * Emits signal: "link,hover,out"
  */
-void ewk_view_mouse_link_hover_out(Evas_Object *o)
+void ewk_view_mouse_link_hover_out(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "link,hover,out", 0);
 }
@@ -2934,7 +2934,7 @@ void ewk_view_mouse_link_hover_out(Evas_Object *o)
  *
  * Emits signal: "toolbars,visible,set" with a pointer to a boolean.
  */
-void ewk_view_toolbars_visible_set(Evas_Object *o, Eina_Bool visible)
+void ewk_view_toolbars_visible_set(Evas_Objecto, Eina_Bool visible)
 {
     DBG("o=%p (visible=%d)", o, !!visible);
     evas_object_smart_callback_call(o, "toolbars,visible,set", &visible);
@@ -2951,7 +2951,7 @@ void ewk_view_toolbars_visible_set(Evas_Object *o, Eina_Bool visible)
  *
  * Emits signal: "toolbars,visible,get" with a pointer to a boolean.
  */
-void ewk_view_toolbars_visible_get(Evas_Object *o, Eina_Bool *visible)
+void ewk_view_toolbars_visible_get(Evas_Object* o, Eina_Bool* visible)
 {
     DBG("%s, o=%p", __func__, o);
     *visible = EINA_FALSE;
@@ -2967,7 +2967,7 @@ void ewk_view_toolbars_visible_get(Evas_Object *o, Eina_Bool *visible)
  *
  * Emits signal: "statusbar,visible,set" with a pointer to a boolean.
  */
-void ewk_view_statusbar_visible_set(Evas_Object *o, Eina_Bool visible)
+void ewk_view_statusbar_visible_set(Evas_Objecto, Eina_Bool visible)
 {
     DBG("o=%p (visible=%d)", o, !!visible);
     evas_object_smart_callback_call(o, "statusbar,visible,set", &visible);
@@ -2984,7 +2984,7 @@ void ewk_view_statusbar_visible_set(Evas_Object *o, Eina_Bool visible)
  *
  * Emits signal: "statusbar,visible,get" with a pointer to a boolean.
  */
-void ewk_view_statusbar_visible_get(Evas_Object *o, Eina_Bool *visible)
+void ewk_view_statusbar_visible_get(Evas_Object* o, Eina_Bool* visible)
 {
     DBG("%s, o=%p", __func__, o);
     *visible = EINA_FALSE;
@@ -3000,11 +3000,11 @@ void ewk_view_statusbar_visible_get(Evas_Object *o, Eina_Bool *visible)
  *
  * Emits signal: "statusbar,text,set" with a string.
  */
-void ewk_view_statusbar_text_set(Evas_Object *o, const char *text)
+void ewk_view_statusbar_text_set(Evas_Object* o, const char* text)
 {
     DBG("o=%p (text=%s)", o, text);
     INF("status bar text set: %s", text);
-    evas_object_smart_callback_call(o, "statusbar,text,set", (void *)text);
+    evas_object_smart_callback_call(o, "statusbar,text,set", (void*)text);
 }
 
 /**
@@ -3016,7 +3016,7 @@ void ewk_view_statusbar_text_set(Evas_Object *o, const char *text)
  *
  * Emits signal: "scrollbars,visible,set" with a pointer to a boolean.
  */
-void ewk_view_scrollbars_visible_set(Evas_Object *o, Eina_Bool visible)
+void ewk_view_scrollbars_visible_set(Evas_Objecto, Eina_Bool visible)
 {
     DBG("o=%p (visible=%d)", o, !!visible);
     evas_object_smart_callback_call(o, "scrollbars,visible,set", &visible);
@@ -3033,7 +3033,7 @@ void ewk_view_scrollbars_visible_set(Evas_Object *o, Eina_Bool visible)
  *
  * Emits signal: "scrollbars,visible,get" with a pointer to a boolean.
  */
-void ewk_view_scrollbars_visible_get(Evas_Object *o, Eina_Bool *visible)
+void ewk_view_scrollbars_visible_get(Evas_Object* o, Eina_Bool* visible)
 {
     DBG("%s, o=%p", __func__, o);
     *visible = EINA_FALSE;
@@ -3049,7 +3049,7 @@ void ewk_view_scrollbars_visible_get(Evas_Object *o, Eina_Bool *visible)
  *
  * Emits signal: "menubar,visible,set" with a pointer to a boolean.
  */
-void ewk_view_menubar_visible_set(Evas_Object *o, Eina_Bool visible)
+void ewk_view_menubar_visible_set(Evas_Objecto, Eina_Bool visible)
 {
     DBG("o=%p (visible=%d)", o, !!visible);
     evas_object_smart_callback_call(o, "menubar,visible,set", &visible);
@@ -3066,7 +3066,7 @@ void ewk_view_menubar_visible_set(Evas_Object *o, Eina_Bool visible)
  *
  * Emits signal: "menubar,visible,get" with a pointer to a boolean.
  */
-void ewk_view_menubar_visible_get(Evas_Object *o, Eina_Bool *visible)
+void ewk_view_menubar_visible_get(Evas_Object* o, Eina_Bool* visible)
 {
     DBG("%s, o=%p", __func__, o);
     *visible = EINA_FALSE;
@@ -3083,10 +3083,10 @@ void ewk_view_menubar_visible_get(Evas_Object *o, Eina_Bool *visible)
  * Emits signal: "tooltip,text,set" with a string. If tooltip must be actually
  * removed, text will be 0 or '\0'
  */
-void ewk_view_tooltip_text_set(Evas_Object *o, const char *text)
+void ewk_view_tooltip_text_set(Evas_Object* o, const char* text)
 {
     DBG("o=%p text=%s", o, text);
-    evas_object_smart_callback_call(o, "tooltip,text,set", (void *)text);
+    evas_object_smart_callback_call(o, "tooltip,text,set", (void*)text);
 }
 
 /**
@@ -3098,7 +3098,7 @@ void ewk_view_tooltip_text_set(Evas_Object *o, const char *text)
  * @sourceID Source id.
  *
  */
-void ewk_view_add_console_message(Evas_Object *o, const char *message, unsigned int lineNumber, const char *sourceID)
+void ewk_view_add_console_message(Evas_Object* o, const char* message, unsigned int lineNumber, const char* sourceID)
 {
     DBG("o=%p message=%s lineNumber=%u sourceID=%s", o, message, lineNumber, sourceID);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
@@ -3107,7 +3107,7 @@ void ewk_view_add_console_message(Evas_Object *o, const char *message, unsigned
     sd->api->add_console_message(sd, message, lineNumber, sourceID);
 }
 
-void ewk_view_run_javascript_alert(Evas_Object *o, Evas_Object *frame, const char *message)
+void ewk_view_run_javascript_alert(Evas_Object* o, Evas_Object* frame, const char* message)
 {
     DBG("o=%p frame=%p message=%s", o, frame, message);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
@@ -3119,7 +3119,7 @@ void ewk_view_run_javascript_alert(Evas_Object *o, Evas_Object *frame, const cha
     sd->api->run_javascript_alert(sd, frame, message);
 }
 
-Eina_Bool ewk_view_run_javascript_confirm(Evas_Object *o, Evas_Object *frame, const char *message)
+Eina_Bool ewk_view_run_javascript_confirm(Evas_Object* o, Evas_Object* frame, const char* message)
 {
     DBG("o=%p frame=%p message=%s", o, frame, message);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
@@ -3131,7 +3131,7 @@ Eina_Bool ewk_view_run_javascript_confirm(Evas_Object *o, Evas_Object *frame, co
     return sd->api->run_javascript_confirm(sd, frame, message);
 }
 
-Eina_Bool ewk_view_run_javascript_prompt(Evas_Object *o, Evas_Object *frame, const char *message, const char *defaultValue, char **value)
+Eina_Bool ewk_view_run_javascript_prompt(Evas_Object* o, Evas_Object* frame, const char* message, const char* defaultValue, char** value)
 {
     DBG("o=%p frame=%p message=%s", o, frame, message);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
@@ -3154,7 +3154,7 @@ Eina_Bool ewk_view_run_javascript_prompt(Evas_Object *o, Evas_Object *frame, con
  *
  * @return @c EINA_TRUE if script should be stopped; @c EINA_FALSE otherwise
  */
-Eina_Bool ewk_view_should_interrupt_javascript(Evas_Object *o)
+Eina_Bool ewk_view_should_interrupt_javascript(Evas_Objecto)
 {
     DBG("o=%p", o);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
@@ -3180,7 +3180,7 @@ Eina_Bool ewk_view_should_interrupt_javascript(Evas_Object *o)
  * @param expected_size The expected size of this database in order to fulfill
  * site's requirement.
  */
-uint64_t ewk_view_exceeded_database_quota(Evas_Object *o, Evas_Object *frame, const char *databaseName, uint64_t current_size, uint64_t expected_size)
+uint64_t ewk_view_exceeded_database_quota(Evas_Object* o, Evas_Object* frame, const char* databaseName, uint64_t current_size, uint64_t expected_size)
 {
     DBG("o=%p", o);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
@@ -3188,7 +3188,7 @@ uint64_t ewk_view_exceeded_database_quota(Evas_Object *o, Evas_Object *frame, co
     if (!sd->api->exceeded_database_quota)
         return 0;
 
-    INF("current_size=%"PRIu64" expected_size=%"PRIu64, current_size, expected_size);
+    INF("current_size=%" PRIu64 " expected_size=%" PRIu64, current_size, expected_size);
     return sd->api->exceeded_database_quota(sd, frame, databaseName, current_size, expected_size);
 }
 
@@ -3205,7 +3205,7 @@ uint64_t ewk_view_exceeded_database_quota(Evas_Object *o, Evas_Object *frame, co
  *
  * @return @EINA_FALSE if user canceled file selection; @EINA_TRUE if confirmed.
  */
-Eina_Bool ewk_view_run_open_panel(Evas_Object *o, Evas_Object *frame, Eina_Bool allows_multiple_files, const char *accept_types, Eina_List **selected_filenames)
+Eina_Bool ewk_view_run_open_panel(Evas_Object* o, Evas_Object* frame, Eina_Bool allows_multiple_files, const char* accept_types, Eina_List** selected_filenames)
 {
     DBG("o=%p frame=%p allows_multiple_files=%d", o, frame, allows_multiple_files);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
@@ -3223,7 +3223,7 @@ Eina_Bool ewk_view_run_open_panel(Evas_Object *o, Evas_Object *frame, Eina_Bool
     return confirm;
 }
 
-void ewk_view_repaint(Evas_Object *o, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h)
+void ewk_view_repaint(Evas_Objecto, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h)
 {
     DBG("o=%p, region=%d,%d + %dx%d", o, x, y, w, h);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
@@ -3238,7 +3238,7 @@ void ewk_view_repaint(Evas_Object *o, Evas_Coord x, Evas_Coord y, Evas_Coord w,
     _ewk_view_smart_changed(sd);
 }
 
-void ewk_view_scroll(Evas_Object *o, Evas_Coord dx, Evas_Coord dy, Evas_Coord sx, Evas_Coord sy, Evas_Coord sw, Evas_Coord sh, Evas_Coord cx, Evas_Coord cy, Evas_Coord cw, Evas_Coord ch, Eina_Bool main_frame)
+void ewk_view_scroll(Evas_Objecto, Evas_Coord dx, Evas_Coord dy, Evas_Coord sx, Evas_Coord sy, Evas_Coord sw, Evas_Coord sh, Evas_Coord cx, Evas_Coord cy, Evas_Coord cw, Evas_Coord ch, Eina_Bool main_frame)
 {
     DBG("o=%p, delta: %d,%d, scroll: %d,%d+%dx%d, clip: %d,%d+%dx%d",
         o, dx, dy, sx, sy, sw, sh, cx, cy, cw, ch);
@@ -3256,7 +3256,7 @@ void ewk_view_scroll(Evas_Object *o, Evas_Coord dx, Evas_Coord dy, Evas_Coord sx
     _ewk_view_smart_changed(sd);
 }
 
-WebCore::Page* ewk_view_core_page_get(const Evas_Object *o)
+WebCore::Page* ewk_view_core_page_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
@@ -3268,7 +3268,7 @@ WebCore::Page* ewk_view_core_page_get(const Evas_Object *o)
  *
  * Emits "frame,created" with the new frame object on success.
  */
-WTF::PassRefPtr<WebCore::Frame> ewk_view_frame_create(Evas_Object *o, Evas_Object *frame, const WTF::String &name, WebCore::HTMLFrameOwnerElement *ownerElement, const WebCore::KURL &url, const WTF::String &referrer)
+WTF::PassRefPtr<WebCore::Frame> ewk_view_frame_create(Evas_Object* o, Evas_Object* frame, const WTF::String& name, WebCore::HTMLFrameOwnerElement* ownerElement, const WebCore::KURL& url, const WTF::String& referrer)
 {
     DBG("o=%p, frame=%p, name=%s, ownerElement=%p, url=%s, referrer=%s",
         o, frame, name.utf8().data(), ownerElement,
@@ -3278,7 +3278,7 @@ WTF::PassRefPtr<WebCore::Frame> ewk_view_frame_create(Evas_Object *o, Evas_Objec
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, 0);
 
     WTF::RefPtr<WebCore::Frame> cf = _ewk_view_core_frame_new
-        (sd, priv, ownerElement);
+                                         (sd, priv, ownerElement);
     if (!cf) {
         ERR("Could not create child core frame '%s'", name.utf8().data());
         return 0;
@@ -3300,7 +3300,7 @@ WTF::PassRefPtr<WebCore::Frame> ewk_view_frame_create(Evas_Object *o, Evas_Objec
     return cf.release();
 }
 
-WTF::PassRefPtr<WebCore::Widget> ewk_view_plugin_create(Evas_Object *o, Evas_Object *frame, const WebCore::IntSize& pluginSize, WebCore::HTMLPlugInElement *element, const WebCore::KURL &url, const WTF::Vector<WTF::String> &paramNames, const WTF::Vector<WTF::String> &paramValues, const WTF::String &mimeType, bool loadManually)
+WTF::PassRefPtr<WebCore::Widget> ewk_view_plugin_create(Evas_Object* o, Evas_Object* frame, const WebCore::IntSize& pluginSize, WebCore::HTMLPlugInElement* element, const WebCore::KURL& url, const WTF::Vector<WTF::String>& paramNames, const WTF::Vector<WTF::String>& paramValues, const WTF::String& mimeType, bool loadManually)
 {
     DBG("o=%p, frame=%p, size=%dx%d, element=%p, url=%s, mimeType=%s",
         o, frame, pluginSize.width(), pluginSize.height(), element,
@@ -3311,8 +3311,8 @@ WTF::PassRefPtr<WebCore::Widget> ewk_view_plugin_create(Evas_Object *o, Evas_Obj
     _ewk_view_smart_changed(sd);
 
     return ewk_frame_plugin_create
-        (frame, pluginSize, element, url, paramNames, paramValues,
-         mimeType, loadManually);
+               (frame, pluginSize, element, url, paramNames, paramValues,
+               mimeType, loadManually);
 }
 
 /**
@@ -3326,7 +3326,7 @@ WTF::PassRefPtr<WebCore::Widget> ewk_view_plugin_create(Evas_Object *o, Evas_Obj
  *
  * Emits: "popup,create" with a list of Ewk_Menu containing each item's data
  */
-void ewk_view_popup_new(Evas_Object *o, WebCore::PopupMenuClient *client, int selected, const WebCore::IntRect &rect)
+void ewk_view_popup_new(Evas_Object* o, WebCore::PopupMenuClient* client, int selected, const WebCore::IntRect& rect)
 {
     INF("o=%p", o);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
@@ -3340,7 +3340,7 @@ void ewk_view_popup_new(Evas_Object *o, WebCore::PopupMenuClient *client, int se
     // populate items
     const int size = client->listSize();
     for (int i = 0; i < size; ++i) {
-        Ewk_Menu_Item *item = (Ewk_Menu_Item *) malloc(sizeof(*item));
+        Ewk_Menu_Item* item = (Ewk_Menu_Item*) malloc(sizeof(*item));
         if (client->itemIsSeparator(i))
             item->type = EWK_MENU_SEPARATOR;
         else if (client->itemIsLabel(i))
@@ -3359,7 +3359,7 @@ void ewk_view_popup_new(Evas_Object *o, WebCore::PopupMenuClient *client, int se
     evas_object_smart_callback_call(o, "popup,create", &priv->popup.menu);
 }
 
-Eina_Bool ewk_view_popup_destroy(Evas_Object *o)
+Eina_Bool ewk_view_popup_destroy(Evas_Objecto)
 {
     INF("o=%p", o);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
@@ -3372,7 +3372,7 @@ Eina_Bool ewk_view_popup_destroy(Evas_Object *o)
 
     void* itemv;
     EINA_LIST_FREE(priv->popup.menu.items, itemv) {
-        Ewk_Menu_Item* item = (Ewk_Menu_Item *)itemv;
+        Ewk_Menu_Item* item = (Ewk_Menu_Item*)itemv;
         eina_stringshare_del(item->text);
         free(item);
     }
@@ -3382,7 +3382,7 @@ Eina_Bool ewk_view_popup_destroy(Evas_Object *o)
     return EINA_TRUE;
 }
 
-void ewk_view_popup_selected_set(Evas_Object *o, int index)
+void ewk_view_popup_selected_set(Evas_Objecto, int index)
 {
     INF("o=%p", o);
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
@@ -3402,7 +3402,7 @@ void ewk_view_popup_selected_set(Evas_Object *o, int index)
  * Emits: "download,request" with an Ewk_Download containing the details of the
  * requested download. The download per se must be handled outside of webkit.
  */
-void ewk_view_download_request(Evas_Object *o, Ewk_Download *download)
+void ewk_view_download_request(Evas_Object* o, Ewk_Download* download)
 {
     DBG("view=%p", o);
     evas_object_smart_callback_call(o, "download,request", download);
@@ -3415,7 +3415,7 @@ void ewk_view_download_request(Evas_Object *o, Ewk_Download *download)
  * @param o view.
  * @param frame the frame.
  */
-void ewk_view_js_window_object_clear(Evas_Object *o, Evas_Object *frame)
+void ewk_view_js_window_object_clear(Evas_Object* o, Evas_Object* frame)
 {
     evas_object_smart_callback_call(o, "js,windowobject,clear", frame);
 }
@@ -3428,16 +3428,16 @@ void ewk_view_js_window_object_clear(Evas_Object *o, Evas_Object *frame)
  *
  * Emits signal: "viewport,changed" with no parameters.
  */
-void ewk_view_viewport_attributes_set(Evas_Object *o, const WebCore::ViewportArguments &arguments)
+void ewk_view_viewport_attributes_set(Evas_Object* o, const WebCore::ViewportArguments& arguments)
 {
     EWK_VIEW_SD_GET(o, sd);
     EWK_VIEW_PRIV_GET(sd, priv);
-    
+
     priv->viewport_arguments = arguments;
     evas_object_smart_callback_call(o, "viewport,changed", 0);
 }
 
-void ewk_view_viewport_attributes_get(const Evas_Object *o, float *w, float *h, float *init_scale, float *max_scale, float *min_scale, float *device_pixel_ratio, Eina_Bool *user_scalable)
+void ewk_view_viewport_attributes_get(const Evas_Object* o, float* w, float* h, float* init_scale, float* max_scale, float* min_scale, float* device_pixel_ratio, Eina_Bool* user_scalable)
 {
     WebCore::ViewportAttributes attributes = _ewk_view_viewport_attributes_compute(o);
 
@@ -3457,7 +3457,7 @@ void ewk_view_viewport_attributes_get(const Evas_Object *o, float *w, float *h,
         *user_scalable = static_cast<bool>(attributes.userScalable);
 }
 
-Eina_Bool ewk_view_zoom_range_set(Evas_Object *o, float min_scale, float max_scale)
+Eina_Bool ewk_view_zoom_range_set(Evas_Objecto, float min_scale, float max_scale)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -3473,7 +3473,7 @@ Eina_Bool ewk_view_zoom_range_set(Evas_Object *o, float min_scale, float max_sca
     return EINA_TRUE;
 }
 
-float ewk_view_zoom_range_min_get(const Evas_Object *o)
+float ewk_view_zoom_range_min_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, -1.0);
@@ -3481,7 +3481,7 @@ float ewk_view_zoom_range_min_get(const Evas_Object *o)
     return priv->settings.zoom_range.min_scale;
 }
 
-float ewk_view_zoom_range_max_get(const Evas_Object *o)
+float ewk_view_zoom_range_max_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, -1.0);
@@ -3489,7 +3489,7 @@ float ewk_view_zoom_range_max_get(const Evas_Object *o)
     return priv->settings.zoom_range.max_scale;
 }
 
-Eina_Bool ewk_view_user_scalable_set(Evas_Object *o, Eina_Bool user_scalable)
+Eina_Bool ewk_view_user_scalable_set(Evas_Objecto, Eina_Bool user_scalable)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -3499,7 +3499,7 @@ Eina_Bool ewk_view_user_scalable_set(Evas_Object *o, Eina_Bool user_scalable)
     return EINA_TRUE;
 }
 
-Eina_Bool ewk_view_user_scalable_get(const Evas_Object *o)
+Eina_Bool ewk_view_user_scalable_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -3507,7 +3507,7 @@ Eina_Bool ewk_view_user_scalable_get(const Evas_Object *o)
     return priv->settings.zoom_range.user_scalable;
 }
 
-float ewk_view_device_pixel_ratio_get(const Evas_Object *o)
+float ewk_view_device_pixel_ratio_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, -1.0);
@@ -3515,7 +3515,7 @@ float ewk_view_device_pixel_ratio_get(const Evas_Object *o)
     return priv->settings.device_pixel_ratio;
 }
 
-void ewk_view_did_first_visually_nonempty_layout(Evas_Object *o)
+void ewk_view_did_first_visually_nonempty_layout(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
@@ -3532,7 +3532,7 @@ void ewk_view_did_first_visually_nonempty_layout(Evas_Object *o)
  *
  * @param o view.
  */
-void ewk_view_dispatch_did_finish_loading(Evas_Object *o)
+void ewk_view_dispatch_did_finish_loading(Evas_Objecto)
 {
     /* If we reach this point and rendering is still disabled, WebCore will not
      * trigger the didFirstVisuallyNonEmptyLayout signal anymore. So, we
@@ -3541,7 +3541,7 @@ void ewk_view_dispatch_did_finish_loading(Evas_Object *o)
     ewk_view_did_first_visually_nonempty_layout(o);
 }
 
-void ewk_view_transition_to_commited_for_newpage(Evas_Object *o)
+void ewk_view_transition_to_commited_for_newpage(Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
@@ -3560,7 +3560,7 @@ void ewk_view_transition_to_commited_for_newpage(Evas_Object *o)
  * @param o View to load
  * @param request Request which contain url to navigate
  */
-Eina_Bool ewk_view_navigation_policy_decision(Evas_Object *o, Ewk_Frame_Resource_Request *request)
+Eina_Bool ewk_view_navigation_policy_decision(Evas_Object* o, Ewk_Frame_Resource_Request* request)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_TRUE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->api, EINA_TRUE);
@@ -3571,7 +3571,7 @@ Eina_Bool ewk_view_navigation_policy_decision(Evas_Object *o, Ewk_Frame_Resource
     return sd->api->navigation_policy_decision(sd, request);
 }
 
-Eina_Bool ewk_view_js_object_add(Evas_Object *o, Ewk_JS_Object *obj, const char *obj_name)
+Eina_Bool ewk_view_js_object_add(Evas_Object* o, Ewk_JS_Object* obj, const char* obj_name)
 {
 #if ENABLE(NETSCAPE_PLUGIN_API)
     if (obj->view) // object has already been added to another ewk_view
@@ -3581,8 +3581,8 @@ Eina_Bool ewk_view_js_object_add(Evas_Object *o, Ewk_JS_Object *obj, const char
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
 
     JSC::JSLock lock(JSC::SilenceAssertionsOnly);
-    WebCore::JSDOMWindow *window = toJSDOMWindow(priv->main_frame, WebCore::mainThreadNormalWorld());
-    JSC::Bindings::RootObject *root;
+    WebCore::JSDOMWindowwindow = toJSDOMWindow(priv->main_frame, WebCore::mainThreadNormalWorld());
+    JSC::Bindings::RootObjectroot;
     root = priv->main_frame->script()->bindingRootObject();
 
     if (!window) {
@@ -3593,7 +3593,7 @@ Eina_Bool ewk_view_js_object_add(Evas_Object *o, Ewk_JS_Object *obj, const char
     JSC::ExecState* exec = window->globalExec();
 
     obj->view = o;
-    JSC::JSObject *runtimeObject = (JSC::JSObject*)JSC::Bindings::CInstance::create((NPObject*)obj, root)->createRuntimeObject(exec);
+    JSC::JSObjectruntimeObject = (JSC::JSObject*)JSC::Bindings::CInstance::create((NPObject*)obj, root)->createRuntimeObject(exec);
     JSC::Identifier id = JSC::Identifier(exec, obj_name);
 
     JSC::PutPropertySlot slot;
@@ -3653,7 +3653,7 @@ void* ewk_view_protocol_handler_resource_get(Evas_Object* o, size_t* bytesRead,
  * @param w new content width.
  * @param h new content height.
  */
-void ewk_view_contents_size_changed(Evas_Object *o, int w, int h)
+void ewk_view_contents_size_changed(Evas_Objecto, int w, int h)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd);
     EINA_SAFETY_ON_NULL_RETURN(sd->api);
@@ -3665,13 +3665,13 @@ void ewk_view_contents_size_changed(Evas_Object *o, int w, int h)
 
 /**
  * @internal
- * Gets page size from frameview. 
+ * Gets page size from frameview.
  *
  * @param o view.
  *
  * @return page size.
  */
-WebCore::FloatRect ewk_view_page_rect_get(const Evas_Object *o)
+WebCore::FloatRect ewk_view_page_rect_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET(o, sd);
     EWK_VIEW_PRIV_GET(sd, priv);
@@ -3681,7 +3681,7 @@ WebCore::FloatRect ewk_view_page_rect_get(const Evas_Object *o)
 }
 
 #if ENABLE(TOUCH_EVENTS)
-void ewk_view_need_touch_events_set(Evas_Object *o, bool needed)
+void ewk_view_need_touch_events_set(Evas_Objecto, bool needed)
 {
     EWK_VIEW_SD_GET(o, sd);
     EWK_VIEW_PRIV_GET(sd, priv);
@@ -3689,7 +3689,7 @@ void ewk_view_need_touch_events_set(Evas_Object *o, bool needed)
     priv->flags.need_touch_events = needed;
 }
 
-Eina_Bool ewk_view_need_touch_events_get(const Evas_Object *o)
+Eina_Bool ewk_view_need_touch_events_get(const Evas_Objecto)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -3697,7 +3697,7 @@ Eina_Bool ewk_view_need_touch_events_get(const Evas_Object *o)
 }
 #endif
 
-Eina_Bool ewk_view_mode_set(Evas_Object *o, Ewk_View_Mode view_mode)
+Eina_Bool ewk_view_mode_set(Evas_Objecto, Ewk_View_Mode view_mode)
 {
     EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv, EINA_FALSE);
@@ -3725,7 +3725,7 @@ Eina_Bool ewk_view_mode_set(Evas_Object *o, Ewk_View_Mode view_mode)
     return EINA_TRUE;
 }
 
-Ewk_View_Mode ewk_view_mode_get(const Evas_Object *o)
+Ewk_View_Mode ewk_view_mode_get(const Evas_Objecto)
 {
     Ewk_View_Mode mode = EWK_VIEW_MODE_WINDOWED;
 
@@ -3764,7 +3764,7 @@ Ewk_View_Mode ewk_view_mode_get(const Evas_Object *o)
  *
  * Emits signal: "editorclientselection,changed" with no parameters.
  */
-void ewk_view_editor_client_selection_changed(Evas_Object *o)
+void ewk_view_editor_client_selection_changed(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "editorclient,selection,changed", 0);
 }
@@ -3777,7 +3777,7 @@ void ewk_view_editor_client_selection_changed(Evas_Object *o)
  *
  * Emits signal: "editorclient,contents,changed" with no parameters.
  */
-void ewk_view_editor_client_contents_changed(Evas_Object *o)
+void ewk_view_editor_client_contents_changed(Evas_Objecto)
 {
     evas_object_smart_callback_call(o, "editorclient,contents,changed", 0);
 }
index 8baf805..b99c8ad 100644 (file)
 
 static Ewk_View_Smart_Class _parent_sc = EWK_VIEW_SMART_CLASS_INIT_NULL;
 
-static void _ewk_view_single_on_del(void *data, Evas *e, Evas_Object *o, void *event_info)
+static void _ewk_view_single_on_del(void* data, Evas* e, Evas_Object* o, void* event_info)
 {
-    Evas_Object *clip = (Evas_Object*)data;
+    Evas_Objectclip = (Evas_Object*)data;
     evas_object_del(clip);
 }
 
-static void _ewk_view_single_smart_add(Evas_Object *o)
+static void _ewk_view_single_smart_add(Evas_Objecto)
 {
-    Ewk_View_Smart_Data *sd;
+    Ewk_View_Smart_Datasd;
 
     _parent_sc.sc.add(o);
 
-    sd = (Ewk_View_Smart_Data *)evas_object_smart_data_get(o);
+    sd = (Ewk_View_Smart_Data*)evas_object_smart_data_get(o);
     if (!sd)
         return;
 
-    Evas_Object *clip = evas_object_rectangle_add(sd->base.evas);
+    Evas_Objectclip = evas_object_rectangle_add(sd->base.evas);
     evas_object_clip_set(sd->backing_store, clip);
     evas_object_smart_member_add(clip, o);
     evas_object_show(clip);
@@ -56,18 +56,18 @@ static void _ewk_view_single_smart_add(Evas_Object *o)
         (sd->backing_store, EVAS_CALLBACK_DEL, _ewk_view_single_on_del, clip);
 }
 
-static Evas_Object *_ewk_view_single_smart_backing_store_add(Ewk_View_Smart_Data *sd)
+static Evas_Object* _ewk_view_single_smart_backing_store_add(Ewk_View_Smart_Data* sd)
 {
-    Evas_Object *bs = evas_object_image_add(sd->base.evas);
+    Evas_Objectbs = evas_object_image_add(sd->base.evas);
     evas_object_image_alpha_set(bs, EINA_FALSE);
     evas_object_image_smooth_scale_set(bs, sd->zoom_weak_smooth_scale);
 
     return bs;
 }
 
-static void _ewk_view_single_smart_resize(Evas_Object *o, Evas_Coord w, Evas_Coord h)
+static void _ewk_view_single_smart_resize(Evas_Objecto, Evas_Coord w, Evas_Coord h)
 {
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data*)evas_object_smart_data_get(o);
+    Ewk_View_Smart_Datasd = (Ewk_View_Smart_Data*)evas_object_smart_data_get(o);
     _parent_sc.sc.resize(o, w, h);
 
     if (!sd)
@@ -76,7 +76,7 @@ static void _ewk_view_single_smart_resize(Evas_Object *o, Evas_Coord w, Evas_Coo
     // these should be queued and processed in calculate as well!
     evas_object_image_size_set(sd->backing_store, w, h);
     if (sd->animated_zoom.zoom.current < 0.00001) {
-        Evas_Object *clip = evas_object_clip_get(sd->backing_store);
+        Evas_Objectclip = evas_object_clip_get(sd->backing_store);
         Evas_Coord x, y, cw, ch;
         evas_object_image_fill_set(sd->backing_store, 0, 0, w, h);
         evas_object_geometry_get(sd->backing_store, &x, &y, 0, 0);
@@ -90,10 +90,10 @@ static void _ewk_view_single_smart_resize(Evas_Object *o, Evas_Coord w, Evas_Coo
     }
 }
 
-static inline void _ewk_view_4b_move_region_up(uint32_t *image, size_t rows, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
+static inline void _ewk_view_4b_move_region_up(uint32_timage, size_t rows, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
 {
-    uint32_t *src;
-    uint32_t *dst;
+    uint32_tsrc;
+    uint32_tdst;
 
     dst = image + x + y * rowsize;
     src = dst + rows * rowsize;
@@ -103,10 +103,10 @@ static inline void _ewk_view_4b_move_region_up(uint32_t *image, size_t rows, siz
         memcpy(dst, src, w * 4);
 }
 
-static inline void _ewk_view_4b_move_region_down(uint32_t *image, size_t rows, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
+static inline void _ewk_view_4b_move_region_down(uint32_timage, size_t rows, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
 {
-    uint32_t *src;
-    uint32_t *dst;
+    uint32_tsrc;
+    uint32_tdst;
 
     h -= rows;
     src = image + x + (y + h - 1) * rowsize;
@@ -116,9 +116,9 @@ static inline void _ewk_view_4b_move_region_down(uint32_t *image, size_t rows, s
         memcpy(dst, src, w * 4);
 }
 
-static inline void _ewk_view_4b_move_line_left(uint32_t *dst, const uint32_t *src, size_t count)
+static inline void _ewk_view_4b_move_line_left(uint32_t* dst, const uint32_t* src, size_t count)
 {
-    uint32_t *dst_end = dst + count;
+    uint32_tdst_end = dst + count;
     /* no memcpy() as it does not allow overlapping regions */
     /* no memmove() as it will copy to a temporary buffer */
     /* TODO: loop unrolling, copying up to quad-words would help */
@@ -126,9 +126,9 @@ static inline void _ewk_view_4b_move_line_left(uint32_t *dst, const uint32_t *sr
         *dst = *src;
 }
 
-static inline void _ewk_view_4b_move_line_right(uint32_t *dst, uint32_t *src, size_t count)
+static inline void _ewk_view_4b_move_line_right(uint32_t* dst, uint32_t* src, size_t count)
 {
-    uint32_t *dst_end = dst - count;
+    uint32_tdst_end = dst - count;
     /* no memcpy() as it does not allow overlapping regions */
     /* no memmove() as it will copy to a temporary buffer */
     /* TODO: loop unrolling, copying up to quad-words would help */
@@ -136,10 +136,10 @@ static inline void _ewk_view_4b_move_line_right(uint32_t *dst, uint32_t *src, si
         *dst = *src;
 }
 
-static inline void _ewk_view_4b_move_region_left(uint32_t *image, size_t cols, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
+static inline void _ewk_view_4b_move_region_left(uint32_timage, size_t cols, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
 {
-    uint32_t *src;
-    uint32_t *dst;
+    uint32_tsrc;
+    uint32_tdst;
 
     dst = image + x + y * rowsize;
     src = dst + cols;
@@ -149,10 +149,10 @@ static inline void _ewk_view_4b_move_region_left(uint32_t *image, size_t cols, s
         _ewk_view_4b_move_line_left(dst, src, w);
 }
 
-static inline void _ewk_view_4b_move_region_right(uint32_t *image, size_t cols, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
+static inline void _ewk_view_4b_move_region_right(uint32_timage, size_t cols, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
 {
-    uint32_t *src;
-    uint32_t *dst;
+    uint32_tsrc;
+    uint32_tdst;
 
     w -= cols;
     src = image + (x + w - 1) + y * rowsize;
@@ -163,10 +163,10 @@ static inline void _ewk_view_4b_move_region_right(uint32_t *image, size_t cols,
 }
 
 /* catch-all function, not as optimized as the others, but does the work. */
-static inline void _ewk_view_4b_move_region(uint32_t *image, int dx, int dy, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
+static inline void _ewk_view_4b_move_region(uint32_timage, int dx, int dy, size_t x, size_t y, size_t w, size_t h, size_t rowsize)
 {
-    uint32_t *src;
-    uint32_t *dst;
+    uint32_tsrc;
+    uint32_tdst;
 
     if (dy < 0) {
         h += dy;
@@ -203,7 +203,7 @@ static inline void _ewk_view_4b_move_region(uint32_t *image, int dx, int dy, siz
     }
 }
 
-static inline void _ewk_view_single_scroll_process_single(Ewk_View_Smart_Data *sd, void *pixels, Evas_Coord ow, Evas_Coord oh, const Ewk_Scroll_Request *sr)
+static inline void _ewk_view_single_scroll_process_single(Ewk_View_Smart_Data* sd, void* pixels, Evas_Coord ow, Evas_Coord oh, const Ewk_Scroll_Request* sr)
 {
     Evas_Coord sx, sy, sw, sh;
 
@@ -340,13 +340,13 @@ static inline void _ewk_view_single_scroll_process_single(Ewk_View_Smart_Data *s
     }
 }
 
-static Eina_Bool _ewk_view_single_smart_scrolls_process(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_single_smart_scrolls_process(Ewk_View_Smart_Datasd)
 {
-    const Ewk_Scroll_Request *sr;
-    const Ewk_Scroll_Request *sr_end;
+    const Ewk_Scroll_Requestsr;
+    const Ewk_Scroll_Requestsr_end;
     Evas_Coord ow, oh;
     size_t count;
-    void *pixels = evas_object_image_data_get(sd->backing_store, 1);
+    voidpixels = evas_object_image_data_get(sd->backing_store, 1);
     evas_object_image_size_get(sd->backing_store, &ow, &oh);
 
     sr = ewk_view_scroll_requests_get(sd->_priv, &count);
@@ -359,25 +359,25 @@ static Eina_Bool _ewk_view_single_smart_scrolls_process(Ewk_View_Smart_Data *sd)
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_single_smart_repaints_process(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_single_smart_repaints_process(Ewk_View_Smart_Datasd)
 {
-    Ewk_View_Paint_Context *ctxt;
+    Ewk_View_Paint_Contextctxt;
     Evas_Coord ow, oh;
-    void *pixels;
-    Eina_Rectangle *r;
-    const Eina_Rectangle *pr;
-    const Eina_Rectangle *pr_end;
-    Eina_Tiler *tiler;
-    Eina_Iterator *itr;
+    voidpixels;
+    Eina_Rectangler;
+    const Eina_Rectanglepr;
+    const Eina_Rectanglepr_end;
+    Eina_Tilertiler;
+    Eina_Iteratoritr;
     cairo_status_t status;
-    cairo_surface_t *surface;
+    cairo_surface_tsurface;
     cairo_format_t format;
-    cairo_t *cairo;
+    cairo_tcairo;
     size_t count;
     Eina_Bool ret = EINA_TRUE;
 
     if (sd->animated_zoom.zoom.current < 0.00001) {
-        Evas_Object *clip = evas_object_clip_get(sd->backing_store);
+        Evas_Objectclip = evas_object_clip_get(sd->backing_store);
         Evas_Coord w, h, cw, ch;
         // reset effects of zoom_weak_set()
         evas_object_image_fill_set
@@ -400,7 +400,7 @@ static Eina_Bool _ewk_view_single_smart_repaints_process(Ewk_View_Smart_Data *sd
     format = CAIRO_FORMAT_ARGB32;
 
     surface = cairo_image_surface_create_for_data
-        ((unsigned char*)pixels, format, ow, oh, ow * 4);
+                  ((unsigned char*)pixels, format, ow, oh, ow * 4);
     status = cairo_surface_status(surface);
     if (status != CAIRO_STATUS_SUCCESS) {
         ERR("could not create surface from data %dx%d: %s",
@@ -482,14 +482,14 @@ error_cairo_surface:
     return ret;
 }
 
-static Eina_Bool _ewk_view_single_smart_zoom_weak_set(Ewk_View_Smart_Data *sd, float zoom, Evas_Coord cx, Evas_Coord cy)
+static Eina_Bool _ewk_view_single_smart_zoom_weak_set(Ewk_View_Smart_Datasd, float zoom, Evas_Coord cx, Evas_Coord cy)
 {
     // TODO: review
     float scale = zoom / sd->animated_zoom.zoom.start;
     Evas_Coord w = sd->view.w * scale;
     Evas_Coord h = sd->view.h * scale;
     Evas_Coord dx, dy, cw, ch;
-    Evas_Object *clip = evas_object_clip_get(sd->backing_store);
+    Evas_Objectclip = evas_object_clip_get(sd->backing_store);
 
     ewk_frame_contents_size_get(sd->main_frame, &cw, &ch);
     if (sd->view.w > 0 && sd->view.h > 0) {
@@ -519,17 +519,17 @@ static Eina_Bool _ewk_view_single_smart_zoom_weak_set(Ewk_View_Smart_Data *sd, f
     return EINA_TRUE;
 }
 
-static void _ewk_view_single_smart_zoom_weak_smooth_scale_set(Ewk_View_Smart_Data *sd, Eina_Bool smooth_scale)
+static void _ewk_view_single_smart_zoom_weak_smooth_scale_set(Ewk_View_Smart_Datasd, Eina_Bool smooth_scale)
 {
     evas_object_image_smooth_scale_set(sd->backing_store, smooth_scale);
 }
 
-static void _ewk_view_single_smart_bg_color_set(Ewk_View_Smart_Data *sd, unsigned char r, unsigned char g, unsigned char b, unsigned char a)
+static void _ewk_view_single_smart_bg_color_set(Ewk_View_Smart_Datasd, unsigned char r, unsigned char g, unsigned char b, unsigned char a)
 {
     evas_object_image_alpha_set(sd->backing_store, a < 255);
 }
 
-Eina_Bool ewk_view_single_smart_set(Ewk_View_Smart_Class *api)
+Eina_Bool ewk_view_single_smart_set(Ewk_View_Smart_Classapi)
 {
     if (!ewk_view_base_smart_set(api))
         return EINA_FALSE;
@@ -550,10 +550,10 @@ Eina_Bool ewk_view_single_smart_set(Ewk_View_Smart_Class *api)
     return EINA_TRUE;
 }
 
-static inline Evas_Smart *_ewk_view_single_smart_class_new(void)
+static inline Evas_Smart_ewk_view_single_smart_class_new(void)
 {
     static Ewk_View_Smart_Class api = EWK_VIEW_SMART_CLASS_INIT_NAME_VERSION("Ewk_View_Single");
-    static Evas_Smart *smart = 0;
+    static Evas_Smartsmart = 0;
 
     if (EINA_UNLIKELY(!smart)) {
         ewk_view_single_smart_set(&api);
@@ -563,7 +563,7 @@ static inline Evas_Smart *_ewk_view_single_smart_class_new(void)
     return smart;
 }
 
-Evas_Object *ewk_view_single_add(Evas *e)
+Evas_Object* ewk_view_single_add(Evas* e)
 {
     return evas_object_smart_add(e, _ewk_view_single_smart_class_new());
 }
index fc845f7..49751bd 100644 (file)
 
 static Ewk_View_Smart_Class _parent_sc = EWK_VIEW_SMART_CLASS_INIT_NULL;
 
-static Eina_Bool _ewk_view_tiled_render_cb(void *data, Ewk_Tile *t, const Eina_Rectangle *area)
+static Eina_Bool _ewk_view_tiled_render_cb(void* data, Ewk_Tile* t, const Eina_Rectangle* area)
 {
-    Ewk_View_Private_Data *priv = (Ewk_View_Private_Data*)data;
+    Ewk_View_Private_Datapriv = (Ewk_View_Private_Data*)data;
     Eina_Rectangle r = {area->x + t->x, area->y + t->y, area->w, area->h};
 
     return ewk_view_paint_contents(priv, t->cairo, &r);
 }
 
-static void *_ewk_view_tiled_updates_process_pre(void *data, Evas_Object *o)
+static void* _ewk_view_tiled_updates_process_pre(void* data, Evas_Object* o)
 {
-    Ewk_View_Private_Data *priv = (Ewk_View_Private_Data*)data;
+    Ewk_View_Private_Datapriv = (Ewk_View_Private_Data*)data;
     ewk_view_layout_if_needed_recursive(priv);
     return 0;
 }
 
-static Evas_Object *_ewk_view_tiled_smart_backing_store_add(Ewk_View_Smart_Data *sd)
+static Evas_Object* _ewk_view_tiled_smart_backing_store_add(Ewk_View_Smart_Data* sd)
 {
-    Evas_Object *bs = ewk_tiled_backing_store_add(sd->base.evas);
+    Evas_Objectbs = ewk_tiled_backing_store_add(sd->base.evas);
     ewk_tiled_backing_store_render_cb_set
         (bs, _ewk_view_tiled_render_cb, sd->_priv);
     ewk_tiled_backing_store_updates_process_pre_set
@@ -56,18 +56,18 @@ static Evas_Object *_ewk_view_tiled_smart_backing_store_add(Ewk_View_Smart_Data
 }
 
 static void
-_ewk_view_tiled_contents_size_changed_cb(void *data, Evas_Object *o, void *event_info)
+_ewk_view_tiled_contents_size_changed_cb(void* data, Evas_Object* o, void* event_info)
 {
-    Evas_Coord *size = (Evas_Coord*)event_info;
-    Ewk_View_Smart_Data *sd = (Ewk_View_Smart_Data*)data;
+    Evas_Coordsize = (Evas_Coord*)event_info;
+    Ewk_View_Smart_Datasd = (Ewk_View_Smart_Data*)data;
 
     ewk_tiled_backing_store_contents_resize
         (sd->backing_store, size[0], size[1]);
 }
 
-static void _ewk_view_tiled_smart_add(Evas_Object *o)
+static void _ewk_view_tiled_smart_add(Evas_Objecto)
 {
-    Ewk_View_Smart_Data *sd;
+    Ewk_View_Smart_Datasd;
 
     _parent_sc.sc.add(o);
 
@@ -81,10 +81,10 @@ static void _ewk_view_tiled_smart_add(Evas_Object *o)
     ewk_frame_paint_full_set(sd->main_frame, EINA_TRUE);
 }
 
-static Eina_Bool _ewk_view_tiled_smart_scrolls_process(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_tiled_smart_scrolls_process(Ewk_View_Smart_Datasd)
 {
-    const Ewk_Scroll_Request *sr;
-    const Ewk_Scroll_Request *sr_end;
+    const Ewk_Scroll_Requestsr;
+    const Ewk_Scroll_Requestsr_end;
     size_t count;
     Evas_Coord vw, vh;
 
@@ -137,9 +137,9 @@ static Eina_Bool _ewk_view_tiled_smart_scrolls_process(Ewk_View_Smart_Data *sd)
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_tiled_smart_repaints_process(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_tiled_smart_repaints_process(Ewk_View_Smart_Datasd)
 {
-    const Eina_Rectangle *pr, *pr_end;
+    const Eina_Rectangle* pr, * pr_end;
     size_t count;
     int sx, sy;
 
@@ -160,13 +160,13 @@ static Eina_Bool _ewk_view_tiled_smart_repaints_process(Ewk_View_Smart_Data *sd)
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_tiled_smart_contents_resize(Ewk_View_Smart_Data *sd, int w, int h)
+static Eina_Bool _ewk_view_tiled_smart_contents_resize(Ewk_View_Smart_Datasd, int w, int h)
 {
     ewk_tiled_backing_store_contents_resize(sd->backing_store, w, h);
     return EINA_TRUE;
 }
 
-static Eina_Bool _ewk_view_tiled_smart_zoom_set(Ewk_View_Smart_Data *sd, float zoom, Evas_Coord cx, Evas_Coord cy)
+static Eina_Bool _ewk_view_tiled_smart_zoom_set(Ewk_View_Smart_Datasd, float zoom, Evas_Coord cx, Evas_Coord cy)
 {
     Evas_Coord x, y, w, h;
     Eina_Bool r;
@@ -186,50 +186,50 @@ static Eina_Bool _ewk_view_tiled_smart_zoom_set(Ewk_View_Smart_Data *sd, float z
     return r;
 }
 
-static Eina_Bool _ewk_view_tiled_smart_zoom_weak_set(Ewk_View_Smart_Data *sd, float zoom, Evas_Coord cx, Evas_Coord cy)
+static Eina_Bool _ewk_view_tiled_smart_zoom_weak_set(Ewk_View_Smart_Datasd, float zoom, Evas_Coord cx, Evas_Coord cy)
 {
     return ewk_tiled_backing_store_zoom_weak_set(sd->backing_store, zoom, cx, cy);
 }
 
-static void _ewk_view_tiled_smart_zoom_weak_smooth_scale_set(Ewk_View_Smart_Data *sd, Eina_Bool smooth_scale)
+static void _ewk_view_tiled_smart_zoom_weak_smooth_scale_set(Ewk_View_Smart_Datasd, Eina_Bool smooth_scale)
 {
     ewk_tiled_backing_store_zoom_weak_smooth_scale_set(sd->backing_store, smooth_scale);
 }
 
-static void _ewk_view_tiled_smart_flush(Ewk_View_Smart_Data *sd)
+static void _ewk_view_tiled_smart_flush(Ewk_View_Smart_Datasd)
 {
     ewk_tiled_backing_store_flush(sd->backing_store);
     _parent_sc.flush(sd);
 }
 
-static Eina_Bool _ewk_view_tiled_smart_pre_render_region(Ewk_View_Smart_Data *sd, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
+static Eina_Bool _ewk_view_tiled_smart_pre_render_region(Ewk_View_Smart_Datasd, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float zoom)
 {
     return ewk_tiled_backing_store_pre_render_region
-        (sd->backing_store, x, y, w, h, zoom);
+               (sd->backing_store, x, y, w, h, zoom);
 }
 
-static Eina_Bool _ewk_view_tiled_smart_pre_render_relative_radius(Ewk_View_Smart_Data *sd, unsigned int n, float zoom)
+static Eina_Bool _ewk_view_tiled_smart_pre_render_relative_radius(Ewk_View_Smart_Datasd, unsigned int n, float zoom)
 {
     return ewk_tiled_backing_store_pre_render_relative_radius
-        (sd->backing_store, n, zoom);
+               (sd->backing_store, n, zoom);
 }
 
-static void _ewk_view_tiled_smart_pre_render_cancel(Ewk_View_Smart_Data *sd)
+static void _ewk_view_tiled_smart_pre_render_cancel(Ewk_View_Smart_Datasd)
 {
     ewk_tiled_backing_store_pre_render_cancel(sd->backing_store);
 }
 
-static Eina_Bool _ewk_view_tiled_smart_disable_render(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_tiled_smart_disable_render(Ewk_View_Smart_Datasd)
 {
     return ewk_tiled_backing_store_disable_render(sd->backing_store);
 }
 
-static Eina_Bool _ewk_view_tiled_smart_enable_render(Ewk_View_Smart_Data *sd)
+static Eina_Bool _ewk_view_tiled_smart_enable_render(Ewk_View_Smart_Datasd)
 {
     return ewk_tiled_backing_store_enable_render(sd->backing_store);
 }
 
-Eina_Bool ewk_view_tiled_smart_set(Ewk_View_Smart_Class *api)
+Eina_Bool ewk_view_tiled_smart_set(Ewk_View_Smart_Classapi)
 {
     if (!ewk_view_base_smart_set(api))
         return EINA_FALSE;
@@ -255,10 +255,10 @@ Eina_Bool ewk_view_tiled_smart_set(Ewk_View_Smart_Class *api)
     return EINA_TRUE;
 }
 
-static inline Evas_Smart *_ewk_view_tiled_smart_class_new(void)
+static inline Evas_Smart_ewk_view_tiled_smart_class_new(void)
 {
     static Ewk_View_Smart_Class api = EWK_VIEW_SMART_CLASS_INIT_NAME_VERSION("EWK_View_Tiled");
-    static Evas_Smart *smart = 0;
+    static Evas_Smartsmart = 0;
 
     if (EINA_UNLIKELY(!smart)) {
         ewk_view_tiled_smart_set(&api);
@@ -268,21 +268,21 @@ static inline Evas_Smart *_ewk_view_tiled_smart_class_new(void)
     return smart;
 }
 
-Evas_Object *ewk_view_tiled_add(Evas *e)
+Evas_Object* ewk_view_tiled_add(Evas* e)
 {
     return evas_object_smart_add(e, _ewk_view_tiled_smart_class_new());
 }
 
-Ewk_Tile_Unused_Cache *ewk_view_tiled_unused_cache_get(const Evas_Object *o)
+Ewk_Tile_Unused_Cache* ewk_view_tiled_unused_cache_get(const Evas_Object* o)
 {
-    Ewk_View_Smart_Data *sd = ewk_view_smart_data_get(o);
+    Ewk_View_Smart_Datasd = ewk_view_smart_data_get(o);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd, 0);
     return ewk_tiled_backing_store_tile_unused_cache_get(sd->backing_store);
 }
 
-void ewk_view_tiled_unused_cache_set(Evas_Object *o, Ewk_Tile_Unused_Cache *cache)
+void ewk_view_tiled_unused_cache_set(Evas_Object* o, Ewk_Tile_Unused_Cache* cache)
 {
-    Ewk_View_Smart_Data *sd = ewk_view_smart_data_get(o);
+    Ewk_View_Smart_Datasd = ewk_view_smart_data_get(o);
     EINA_SAFETY_ON_NULL_RETURN(sd);
     ewk_tiled_backing_store_tile_unused_cache_set(sd->backing_store, cache);
 }
index 4bb6e06..809d1e8 100644 (file)
  */
 struct _Ewk_Window_Features {
     unsigned int __ref;
-    WebCore::WindowFeatures *core;
+    WebCore::WindowFeaturescore;
 };
 
-void ewk_window_features_unref(Ewk_Window_Features *window_features)
+void ewk_window_features_unref(Ewk_Window_Featureswindow_features)
 {
     EINA_SAFETY_ON_NULL_RETURN(window_features);
     EINA_SAFETY_ON_FALSE_RETURN(window_features->__ref > 0);
@@ -48,13 +48,13 @@ void ewk_window_features_unref(Ewk_Window_Features *window_features)
     free(window_features);
 }
 
-void ewk_window_features_ref(Ewk_Window_Features *window_features)
+void ewk_window_features_ref(Ewk_Window_Featureswindow_features)
 {
     EINA_SAFETY_ON_NULL_RETURN(window_features);
     window_features->__ref++;
 }
 
-void ewk_window_features_bool_property_get(const Ewk_Window_Features *window_features, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visible, Eina_Bool *fullscreen)
+void ewk_window_features_bool_property_get(const Ewk_Window_Features* window_features, Eina_Bool* toolbar_visible, Eina_Bool* statusbar_visible, Eina_Bool* scrollbars_visible, Eina_Bool* menubar_visible, Eina_Bool* locationbar_visible, Eina_Bool* fullscreen)
 {
     EINA_SAFETY_ON_NULL_RETURN(window_features);
     EINA_SAFETY_ON_NULL_RETURN(window_features->core);
@@ -78,7 +78,7 @@ void ewk_window_features_bool_property_get(const Ewk_Window_Features *window_fea
         *fullscreen = window_features->core->fullscreen;
 }
 
-void ewk_window_features_int_property_get(const Ewk_Window_Features *window_features, int *x, int *y, int *w, int *h)
+void ewk_window_features_int_property_get(const Ewk_Window_Features* window_features, int* x, int* y, int* w, int* h)
 {
     EINA_SAFETY_ON_NULL_RETURN(window_features);
     EINA_SAFETY_ON_NULL_RETURN(window_features->core);
@@ -107,9 +107,9 @@ void ewk_window_features_int_property_get(const Ewk_Window_Features *window_feat
  * it is embedded inside the Ewk_Window_Features whose ref count is initialized, if core is @c 0 a new one is created with the default features.
  * @return a new allocated the Ewk_Window_Features object on sucess or @c 0 on failure
  */
-Ewk_Window_Features *ewk_window_features_new_from_core(const WebCore::WindowFeatures *core)
+Ewk_Window_Features* ewk_window_features_new_from_core(const WebCore::WindowFeatures* core)
 {
-    Ewk_Window_Features *window_features = static_cast<Ewk_Window_Features*>(malloc(sizeof(*window_features)));
+    Ewk_Window_Featureswindow_features = static_cast<Ewk_Window_Features*>(malloc(sizeof(*window_features)));
     if (!window_features) {
         CRITICAL("Could not allocate Ewk_Window_Features.");
         return 0;