From af52493aa0763258dfa4e85e9c2b8bc77f8c7d9f Mon Sep 17 00:00:00 2001 From: SeungSeop Park Date: Tue, 29 Jul 2014 20:47:44 +0900 Subject: [PATCH] fixup! Add the Tizen platform API implementation Change-Id: I6fc8f4873858c48e44ee93b3b5f000419f0d4b20 --- tizen_src/impl/API/ewk_settings_private.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tizen_src/impl/API/ewk_settings_private.h b/tizen_src/impl/API/ewk_settings_private.h index 434bf2f..75605f6 100644 --- a/tizen_src/impl/API/ewk_settings_private.h +++ b/tizen_src/impl/API/ewk_settings_private.h @@ -29,13 +29,14 @@ #include #include -#include +#include #include "tizen_webview/public/tw_legacy_font_size_mode.h" + class Ewk_Settings { public: - Ewk_Settings(Evas_Object* evas_object, WebPreferences preferences) + Ewk_Settings(Evas_Object* evas_object, content::WebPreferences preferences) : m_preferences(preferences) , m_autofillPasswordForm(false) , m_formCandidateData(false) @@ -95,11 +96,11 @@ class Ewk_Settings { bool detectContentsAutomatically() const { return m_detectContentsAutomatically; } Evas_Object* getEvasObject() { return m_evas_object; } - WebPreferences& getPreferences() { return m_preferences; } - const WebPreferences& getPreferences() const { return m_preferences; } + content::WebPreferences& getPreferences() { return m_preferences; } + const content::WebPreferences& getPreferences() const { return m_preferences; } private: - WebPreferences m_preferences; + content::WebPreferences m_preferences; Eina_Stringshare* m_defaultTextEncoding; bool m_autofillPasswordForm; bool m_formCandidateData; -- 2.7.4