[EFL] Remove *void* parameter in internal functions
authorgyuyoung.kim@samsung.com <gyuyoung.kim@samsung.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 28 Sep 2011 12:35:16 +0000 (12:35 +0000)
committergyuyoung.kim@samsung.com <gyuyoung.kim@samsung.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 28 Sep 2011 12:35:16 +0000 (12:35 +0000)
https://bugs.webkit.org/show_bug.cgi?id=68867

Reviewed by Andreas Kling.

As a step to let ewk be compliant with webkit coding style,
we need to remove *void* parameter in internal functions.

* ewk/ewk_private.h:
* ewk/ewk_settings.cpp:
(ewk_settings_web_database_default_quota_get):
* ewk/ewk_util.cpp:
(ewk_util_dpi_get):

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

Source/WebKit/efl/ChangeLog
Source/WebKit/efl/ewk/ewk_private.h
Source/WebKit/efl/ewk/ewk_settings.cpp
Source/WebKit/efl/ewk/ewk_util.cpp

index a6949f5..134880c 100755 (executable)
@@ -1,3 +1,19 @@
+2011-09-28  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
+
+        [EFL] Remove *void* parameter in internal functions
+        https://bugs.webkit.org/show_bug.cgi?id=68867
+
+        Reviewed by Andreas Kling.
+
+        As a step to let ewk be compliant with webkit coding style,
+        we need to remove *void* parameter in internal functions.
+
+        * ewk/ewk_private.h:
+        * ewk/ewk_settings.cpp:
+        (ewk_settings_web_database_default_quota_get):
+        * ewk/ewk_util.cpp:
+        (ewk_util_dpi_get):
+
 2011-09-28  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
 
         [EFL] Allow to skip count parameter in ewk_view_repaints_get and ewk_view_scroll_requests_get.
index fc82ba0..f3899bd 100644 (file)
@@ -146,7 +146,7 @@ bool ewk_view_focus_can_cycle(Evas_Object *o, Ewk_Focus_Direction direction);
 void ewk_view_js_window_object_clear(Evas_Object* o, Evas_Object* frame);
 #endif
 
-int ewk_util_dpi_get(void);
+int ewk_util_dpi_get();
 void ewk_util_javascript_gc_collect();
 void ewk_util_javascript_gc_alternate_thread_collect(Eina_Bool waitUntilDone);
 unsigned ewk_util_javascript_gc_object_count_get();
@@ -218,7 +218,7 @@ void ewk_view_contents_size_changed(Evas_Object* o, Evas_Coord w, Evas_Coord h);
 
 WebCore::FloatRect ewk_view_page_rect_get(const Evas_Object* o);
 
-const char* ewk_settings_default_user_agent_get(void);
+const char* ewk_settings_default_user_agent_get();
 
 void ewk_frame_editor_client_contents_changed(Evas_Object* o);
 void ewk_frame_editor_client_selection_changed(Evas_Object* o);
index eae3dba..83db538 100644 (file)
@@ -79,7 +79,7 @@ static WTF::String _ewk_settings_webkit_os_version_get()
     return ua_os_version;
 }
 
-uint64_t ewk_settings_web_database_default_quota_get(void)
+uint64_t ewk_settings_web_database_default_quota_get()
 {
 #if ENABLE(SQL_DATABASE)
     return _ewk_default_web_database_quota;
index 69fe6f0..b7c9ff3 100644 (file)
@@ -163,7 +163,7 @@ unsigned ewk_util_worker_thread_count()
  *
  * @return device's dpi value.
  */
-int ewk_util_dpi_get(void)
+int ewk_util_dpi_get()
 {
 #ifdef HAVE_ECORE_X
     return ecore_x_dpi_get();