[Webkit-unassigned] [Bug 43767] [EFL]REGRESSION(65021) need to fix build break

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 10 00:33:40 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=43767





--- Comment #6 from Ryuan Choi <ryuan.choi at samsung.com>  2010-08-10 00:33:40 PST ---
(In reply to comment #5)
> (From update of attachment 63978 [details])
> WebKit/efl/ewk/ewk_frame.cpp:1949
>  +  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)
> We generally use WebCore::String instead of WTF::String directly.  I guess it doesn't matter much.

I believe r65021 changes WebCore::String.

below is a part of r65021

Index: WebKit/efl/ewk/ewk_settings.cpp
===================================================================
--- WebKit/efl/ewk/ewk_settings.cpp    (revision 65020)
+++ WebKit/efl/ewk/ewk_settings.cpp    (working copy)
@@ -67,7 +67,7 @@ uint64_t ewk_settings_web_database_defau
 void ewk_settings_web_database_path_set(const char *path)
 {
 #if ENABLE(DATABASE)
-    WebCore::String corePath = WebCore::String::fromUTF8(path);
+    WTF::String corePath = WTF::String::fromUTF8(path);
     WebCore::DatabaseTracker::tracker().setDatabaseDirectoryPath(corePath);
 #endif
 }

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list