[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

paroga at webkit.org paroga at webkit.org
Wed Dec 22 13:41:01 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4d03535fe677af5219f009a7099d9058e75d5ca4
Author: paroga at webkit.org <paroga at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 23 13:29:47 2010 +0000

    2010-09-23  Patrick Gansterer  <paroga at webkit.org>
    
            Unreviewed.
    
            Build fix for FrameLoaderClientWinCE.
    
            * WebCoreSupport/FrameLoaderClientWinCE.cpp:
            (WebKit::FrameLoaderClientWinCE::canShowMIMETypeAsHTML): Add missing method.
            * WebCoreSupport/FrameLoaderClientWinCE.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68132 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/wince/ChangeLog b/WebKit/wince/ChangeLog
index 6ffd3fe..8ad0a81 100644
--- a/WebKit/wince/ChangeLog
+++ b/WebKit/wince/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-23  Patrick Gansterer  <paroga at webkit.org>
+
+        Unreviewed.
+
+        Build fix for FrameLoaderClientWinCE.
+
+        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
+        (WebKit::FrameLoaderClientWinCE::canShowMIMETypeAsHTML): Add missing method.
+        * WebCoreSupport/FrameLoaderClientWinCE.h:
+
 2010-09-21  Patrick Gansterer  <paroga at webkit.org>
 
         Reviewed by Adam Roben.
diff --git a/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.cpp b/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.cpp
index b11df84..16be8cf 100644
--- a/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.cpp
+++ b/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.cpp
@@ -424,6 +424,12 @@ bool FrameLoaderClientWinCE::canShowMIMEType(const String& type) const
             || PluginDatabase::installedPlugins()->isMIMETypeRegistered(type));
 }
 
+bool FrameLoaderClientWinCE::canShowMIMETypeAsHTML(const String&) const
+{
+    notImplemented();
+    return false;
+}
+
 bool FrameLoaderClientWinCE::representationExistsForURLScheme(const String&) const
 {
     notImplemented();
diff --git a/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h b/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h
index 94810bc..2444003 100644
--- a/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h
+++ b/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h
@@ -154,6 +154,7 @@ public:
 
     virtual bool canHandleRequest(const WebCore::ResourceRequest&) const;
     virtual bool canShowMIMEType(const WTF::String&) const;
+    virtual bool canShowMIMETypeAsHTML(const WTF::String&) const;
     virtual bool representationExistsForURLScheme(const WTF::String&) const;
     virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String&) const;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list