Title: [88701] trunk/Source/WebKit2
Revision
88701
Author
commit-qu...@webkit.org
Date
2011-06-13 14:51:43 -0700 (Mon, 13 Jun 2011)

Log Message

2011-06-13  Eunmi Lee  <eunmi15....@samsung.com>

        Reviewed by Eric Seidel.

        [EFL][WK2] Add initial WebContextEfl.cpp for webkit2 efl port
        https://bugs.webkit.org/show_bug.cgi?id=62523

        * UIProcess/efl/WebContextEfl.cpp: Added.
        (WebKit::WebContext::applicationCacheDirectory):
        (WebKit::WebContext::platformInitializeWebProcess):
        (WebKit::WebContext::platformInvalidateContext):
        (WebKit::WebContext::platformDefaultDatabaseDirectory):
        (WebKit::WebContext::platformDefaultIconDatabasePath):
        (WebKit::WebContext::platformDefaultLocalStorageDirectory):

Modified Paths

Added Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (88700 => 88701)


--- trunk/Source/WebKit2/ChangeLog	2011-06-13 21:44:48 UTC (rev 88700)
+++ trunk/Source/WebKit2/ChangeLog	2011-06-13 21:51:43 UTC (rev 88701)
@@ -1,3 +1,18 @@
+2011-06-13  Eunmi Lee  <eunmi15....@samsung.com>
+
+        Reviewed by Eric Seidel.
+
+        [EFL][WK2] Add initial WebContextEfl.cpp for webkit2 efl port
+        https://bugs.webkit.org/show_bug.cgi?id=62523
+
+        * UIProcess/efl/WebContextEfl.cpp: Added.
+        (WebKit::WebContext::applicationCacheDirectory):
+        (WebKit::WebContext::platformInitializeWebProcess):
+        (WebKit::WebContext::platformInvalidateContext):
+        (WebKit::WebContext::platformDefaultDatabaseDirectory):
+        (WebKit::WebContext::platformDefaultIconDatabasePath):
+        (WebKit::WebContext::platformDefaultLocalStorageDirectory):
+
 2011-06-13  Noam Rosenthal  <noam.rosent...@nokia.com>
 
         Unreviewed fix - removed parts of r88659 that were committed by mistake.

Added: trunk/Source/WebKit2/UIProcess/efl/WebContextEfl.cpp (0 => 88701)


--- trunk/Source/WebKit2/UIProcess/efl/WebContextEfl.cpp	                        (rev 0)
+++ trunk/Source/WebKit2/UIProcess/efl/WebContextEfl.cpp	2011-06-13 21:51:43 UTC (rev 88701)
@@ -0,0 +1,67 @@
+/*
+ * Copyright (C) 2011 Samsung Electronics
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "WebContext.h"
+
+#include <WebCore/ApplicationCacheStorage.h>
+#include <WebCore/NotImplemented.h>
+
+namespace WebKit {
+
+String WebContext::applicationCacheDirectory()
+{
+    return WebCore::cacheStorage().cacheDirectory();
+}
+
+void WebContext::platformInitializeWebProcess(WebProcessCreationParameters&)
+{
+    notImplemented();
+}
+
+void WebContext::platformInvalidateContext()
+{
+    notImplemented();
+}
+
+String WebContext::platformDefaultDatabaseDirectory() const
+{
+    notImplemented();
+    return "";
+}
+
+String WebContext::platformDefaultIconDatabasePath() const
+{
+    notImplemented();
+    return "";
+}
+
+String WebContext::platformDefaultLocalStorageDirectory() const
+{
+    notImplemented();
+    return "";
+}
+
+} // namespace WebKit
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to