Diff
Modified: trunk/Source/WebCore/CMakeLists.txt (177451 => 177452)
--- trunk/Source/WebCore/CMakeLists.txt 2014-12-17 20:09:32 UTC (rev 177451)
+++ trunk/Source/WebCore/CMakeLists.txt 2014-12-17 20:10:31 UTC (rev 177452)
@@ -2783,7 +2783,6 @@
if (NOT ENABLE_NETSCAPE_PLUGIN_API)
list(APPEND WebCore_SOURCES
- plugins/PluginPackageNone.cpp
plugins/PluginViewNone.cpp
)
endif ()
Modified: trunk/Source/WebCore/ChangeLog (177451 => 177452)
--- trunk/Source/WebCore/ChangeLog 2014-12-17 20:09:32 UTC (rev 177451)
+++ trunk/Source/WebCore/ChangeLog 2014-12-17 20:10:31 UTC (rev 177452)
@@ -1,3 +1,16 @@
+2014-12-17 Anders Carlsson <[email protected]>
+
+ Get rid of PluginPackageNone.cpp
+ https://bugs.webkit.org/show_bug.cgi?id=139735
+
+ Reviewed by Andreas Kling.
+
+ * CMakeLists.txt:
+ * PlatformEfl.cmake:
+ * PlatformGTK.cmake:
+ * PlatformWin.cmake:
+ * plugins/PluginPackageNone.cpp: Removed.
+
2014-12-17 Andreas Kling <[email protected]>
Purge PassRefPtr from Frame.
Modified: trunk/Source/WebCore/PlatformEfl.cmake (177451 => 177452)
--- trunk/Source/WebCore/PlatformEfl.cmake 2014-12-17 20:09:32 UTC (rev 177451)
+++ trunk/Source/WebCore/PlatformEfl.cmake 2014-12-17 20:10:31 UTC (rev 177452)
@@ -247,7 +247,6 @@
platform/text/enchant/TextCheckerEnchant.cpp
- plugins/PluginPackageNone.cpp
plugins/PluginViewNone.cpp
)
Modified: trunk/Source/WebCore/PlatformGTK.cmake (177451 => 177452)
--- trunk/Source/WebCore/PlatformGTK.cmake 2014-12-17 20:09:32 UTC (rev 177451)
+++ trunk/Source/WebCore/PlatformGTK.cmake 2014-12-17 20:10:31 UTC (rev 177452)
@@ -192,7 +192,6 @@
platform/network/gtk/CredentialBackingStore.cpp
- plugins/PluginPackageNone.cpp
plugins/PluginViewNone.cpp
)
Modified: trunk/Source/WebCore/PlatformWin.cmake (177451 => 177452)
--- trunk/Source/WebCore/PlatformWin.cmake 2014-12-17 20:09:32 UTC (rev 177451)
+++ trunk/Source/WebCore/PlatformWin.cmake 2014-12-17 20:10:31 UTC (rev 177452)
@@ -83,7 +83,6 @@
)
else ()
list(APPEND WebCore_SOURCES
- plugins/PluginPackageNone.cpp
plugins/PluginViewNone.cpp
)
endif ()
Deleted: trunk/Source/WebCore/plugins/PluginPackageNone.cpp (177451 => 177452)
--- trunk/Source/WebCore/plugins/PluginPackageNone.cpp 2014-12-17 20:09:32 UTC (rev 177451)
+++ trunk/Source/WebCore/plugins/PluginPackageNone.cpp 2014-12-17 20:10:31 UTC (rev 177452)
@@ -1,76 +0,0 @@
-/*
- * Copyright (C) 2008 Kevin Ollivier <[email protected]> All Rights Reserved.
- *
- * 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. ``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
- * 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 "PluginPackage.h"
-
-namespace WebCore {
-
-void PluginPackage::determineQuirks(const String&)
-{
-}
-
-bool PluginPackage::fetchInfo()
-{
- return false;
-}
-
-bool PluginPackage::load()
-{
- return false;
-}
-
-#if ENABLE(NETSCAPE_PLUGIN_API)
-uint16_t PluginPackage::NPVersion() const
-{
- return 0;
-}
-#endif
-
-PassRefPtr<PluginPackage> PluginPackage::createPackage(const String&, const time_t&)
-{
- return 0;
-}
-
-unsigned PluginPackage::hash() const
-{
- return 0;
-}
-
-bool PluginPackage::equal(const PluginPackage&, const PluginPackage&)
-{
- return true;
-}
-
-int PluginPackage::compare(const PluginPackage&) const
-{
- return 0;
-}
-
-PluginPackage::~PluginPackage()
-{
-}
-
-}