Changeset 161661 in webkit


Ignore:
Timestamp:
Jan 10, 2014 12:40:28 PM (10 years ago)
Author:
benjamin@webkit.org
Message:

Remove the BlackBerry port from trunk
https://bugs.webkit.org/show_bug.cgi?id=126715

Patch by Benjamin Poulain <bpoulain@apple.com> on 2014-01-10
Reviewed by Anders Carlsson.

.:

  • CMakeLists.txt:

Source/WebCore:

  • Modules/navigatorcontentutils/NavigatorContentUtils.cpp:

(WebCore::initProtocolHandlerWhitelist):

  • UseJSC.cmake:
  • bindings/generic/RuntimeEnabledFeatures.cpp:

(WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures):

  • bindings/js/GCController.cpp:

(WebCore::GCController::GCController):
(WebCore::GCController::garbageCollectSoon):

  • bindings/js/GCController.h:

Source/WebKit2:

  • Scripts/generate-forwarding-headers.pl:

Tools:

  • Scripts/webkitpy/common/config/watchlist:
Location:
trunk
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r160812 r161661  
    4141# Determine which port will be built
    4242# -----------------------------------------------------------------------------
    43 set(ALL_PORTS Efl WinCE BlackBerry GTK Nix)
     43set(ALL_PORTS Efl WinCE GTK Nix)
    4444set(PORT "NOPORT" CACHE STRING "choose which WebKit port to build (one of ${ALL_PORTS})")
    4545
  • trunk/ChangeLog

    r161659 r161661  
     12014-01-10  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Remove the BlackBerry port from trunk
     4        https://bugs.webkit.org/show_bug.cgi?id=126715
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * CMakeLists.txt:
     9
    1102014-01-09  Benjamin Poulain  <bpoulain@apple.com>
    211
  • trunk/Source/WebCore/ChangeLog

    r161660 r161661  
     12014-01-10  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Remove the BlackBerry port from trunk
     4        https://bugs.webkit.org/show_bug.cgi?id=126715
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * Modules/navigatorcontentutils/NavigatorContentUtils.cpp:
     9        (WebCore::initProtocolHandlerWhitelist):
     10        * UseJSC.cmake:
     11        * bindings/generic/RuntimeEnabledFeatures.cpp:
     12        (WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures):
     13        * bindings/js/GCController.cpp:
     14        (WebCore::GCController::GCController):
     15        (WebCore::GCController::garbageCollectSoon):
     16        * bindings/js/GCController.h:
     17
    1182014-01-10  Daniel Bates  <dabates@apple.com>
    219
  • trunk/Source/WebCore/Modules/navigatorcontentutils/NavigatorContentUtils.cpp

    r156550 r161661  
    4444{
    4545    protocolWhitelist = new HashSet<String>;
    46 #if !PLATFORM(BLACKBERRY)
    4746    static const char* protocols[] = {
    4847        "bitcoin",
     
    6867    for (size_t i = 0; i < WTF_ARRAY_LENGTH(protocols); ++i)
    6968        protocolWhitelist->add(protocols[i]);
    70 #endif
    7169}
    7270
  • trunk/Source/WebCore/UseJSC.cmake

    r161563 r161661  
    1111    bindings/js
    1212)
    13 
    14 if (PORT MATCHES "BlackBerry")
    15     list(APPEND WebCore_IDL_INCLUDES
    16         testing/js
    17     )
    18     list(APPEND WebCore_IDL_FILES
    19         testing/Internals.idl
    20         testing/InternalSettings.idl
    21     )
    22 endif ()
    2313
    2414list(APPEND WebCore_SOURCES
  • trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp

    r158269 r161661  
    7272#endif
    7373#if ENABLE(VIDEO_TRACK)
    74 #if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(EFL) || PLATFORM(BLACKBERRY) || PLATFORM(WIN)
    7574    , m_isVideoTrackEnabled(true)
    76 #else
    77     , m_isVideoTrackEnabled(false)
    78 #endif
    7975#endif
    8076#if ENABLE(SHADOW_DOM)
  • trunk/Source/WebCore/bindings/js/GCController.cpp

    r161638 r161661  
    5050
    5151GCController::GCController()
    52 #if !USE(CF) && !PLATFORM(BLACKBERRY)
     52#if !USE(CF)
    5353    : m_GCTimer(this, &GCController::gcTimerFired)
    5454#endif
     
    6363    // down into WTF so that more platforms can take advantage of it, we will be
    6464    // able to use reportAbandonedObjectGraph on more platforms.
    65 #if USE(CF) || PLATFORM(BLACKBERRY)
     65#if USE(CF)
    6666    JSLockHolder lock(JSDOMWindow::commonVM());
    6767    JSDOMWindow::commonVM()->heap.reportAbandonedObjectGraph();
     
    7272}
    7373
    74 #if !USE(CF) && !PLATFORM(BLACKBERRY)
     74#if !USE(CF)
    7575void GCController::gcTimerFired(Timer<GCController>*)
    7676{
  • trunk/Source/WebCore/bindings/js/GCController.h

    r161638 r161661  
    2727#define GCController_h
    2828
    29 #if USE(CF) || PLATFORM(BLACKBERRY)
     29#if USE(CF)
    3030#include <wtf/FastMalloc.h>
    3131#include <wtf/Noncopyable.h>
     
    5454        GCController(); // Use gcController() instead
    5555
    56 #if !USE(CF) && !PLATFORM(BLACKBERRY)
     56#if !USE(CF)
    5757        void gcTimerFired(Timer<GCController>*);
    5858        Timer<GCController> m_GCTimer;
  • trunk/Source/WebKit2/ChangeLog

    r161625 r161661  
     12014-01-10  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Remove the BlackBerry port from trunk
     4        https://bugs.webkit.org/show_bug.cgi?id=126715
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * Scripts/generate-forwarding-headers.pl:
     9
    1102014-01-10  Carlos Garcia Campos  <cgarcia@igalia.com>
    211
  • trunk/Source/WebKit2/Scripts/generate-forwarding-headers.pl

    r159884 r161661  
    3636my $srcRoot = realpath(File::Spec->catfile(dirname(abs_path($0)), "../.."));
    3737my $incFromRoot = abs_path($ARGV[0]);
    38 my @platformPrefixes = ("blackberry", "cf", "Cocoa", "CoordinatedGraphics", "curl", "efl", "gtk", "mac", "soup", "win");
     38my @platformPrefixes = ("cf", "Cocoa", "CoordinatedGraphics", "curl", "efl", "gtk", "mac", "soup", "win");
    3939my @frameworks = ("JavaScriptCore", "WebCore", "WebKit2");
    4040my @skippedPrefixes;
  • trunk/Tools/ChangeLog

    r161659 r161661  
     12014-01-10  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Remove the BlackBerry port from trunk
     4        https://bugs.webkit.org/show_bug.cgi?id=126715
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * Scripts/webkitpy/common/config/watchlist:
     9
    1102014-01-09  Benjamin Poulain  <bpoulain@apple.com>
    211
  • trunk/Tools/Scripts/webkitpy/common/config/watchlist

    r161656 r161661  
    284284        "Battery": [ "gyuyoung.kim@webkit.org", "dchris@gmail.com" ],
    285285        "BindingsScripts": [ "dchris@gmail.com", "cgarcia@igalia.com" ],
    286         "BlackBerry": [ "mifenton@rim.com", "rwlbuis@gmail.com", "tonikitoo@webkit.org" ],
    287286        "Cairo": [ "dominik.rottsches@intel.com" ],
    288287        "CMake": [ "rakuco@webkit.org", "gyuyoung.kim@webkit.org", "ryuan.choi@gmail.com" ],
Note: See TracChangeset for help on using the changeset viewer.