Changeset 122573 in webkit


Ignore:
Timestamp:
Jul 13, 2012 7:00:06 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Update about:* pages
https://bugs.webkit.org/show_bug.cgi?id=91121

Patch by Joshua Netterfield <jnetterfield@rim.com> on 2012-07-13
Reviewed by Yong Li.

Update the about:config pages, and improve the aesthetics of the about:build, about:version, about:credits, about:memory, about:config, and similar pages.

No new tests, because there is no new funtionality.

Source/WebCore:

  • platform/network/blackberry/NetworkJob.cpp: Update the aesthetics of about:* pages

Source/WebKit/blackberry:

  • WebCoreSupport/AboutData.cpp:

(WebCore):
(WebCore::writeFeatures):
(WebCore::numberToHTMLTr): Converted to template function, added bool specialization to write "true" and "false" instead of "1" and "0"
(WebCore::configPage):
(WebCore::memoryPage):

  • WebCoreSupport/AboutTemplate.html.cpp: Template for BlackBerry about:* pages.
Location:
trunk/Source
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r122572 r122573  
     12012-07-13  Joshua Netterfield  <jnetterfield@rim.com>
     2
     3        [BlackBerry] Update about:* pages
     4        https://bugs.webkit.org/show_bug.cgi?id=91121
     5
     6        Reviewed by Yong Li.
     7
     8        Update the about:config pages, and improve the aesthetics of the about:build, about:version, about:credits, about:memory, about:config, and similar pages.
     9
     10        No new tests, because there is no new funtionality.
     11
     12        * platform/network/blackberry/NetworkJob.cpp: Update the aesthetics of about:* pages
     13
    1142012-07-13  Olivier Blin  <olivier.blin@softathome.com>
    215
  • trunk/Source/WebCore/platform/network/blackberry/NetworkJob.cpp

    r122444 r122573  
    2121
    2222#include "AboutData.h"
     23#include "AboutTemplate.html.cpp"
    2324#include "Chrome.h"
    2425#include "ChromeClient.h"
     
    844845        handled = true;
    845846    } else if (equalIgnoringCase(aboutWhat, "credits")) {
    846         result.append(String("<html><head><title>Open Source Credits</title> <style> .about {padding:14px;} </style> <meta name=\"viewport\" content=\"width=device-width, user-scalable=no\"></head><body>"));
     847        result.append(writeHeader("Credits"));
     848        result.append(String("<style> .about {padding:14px;} </style>"));
    847849        result.append(String(BlackBerry::Platform::WEBKITCREDITS));
    848850        result.append(String("</body></html>"));
     
    884886        handled = true;
    885887    } else if (equalIgnoringCase(aboutWhat, "version")) {
    886         result.append(String("<html><meta name=\"viewport\" content=\"width=device-width, user-scalable=no\"></head><body>"));
     888        result.append(writeHeader("Version"));
     889        result.append(String("<div class='box'><div class='box-title'>Build Time</div><br>"));
    887890        result.append(String(BlackBerry::Platform::BUILDTIME));
    888         result.append(String("</body></html>"));
     891        result.append(String("</div><br><div style='font-size:10px;text-align:center;'>Also see the <A href='about:build'>build information</A>.</body></html>"));
    889892        handled = true;
    890893    } else if (BlackBerry::Platform::debugSetting() > 0 && equalIgnoringCase(aboutWhat, "config")) {
     
    892895        handled = true;
    893896    } else if (BlackBerry::Platform::debugSetting() > 0 && equalIgnoringCase(aboutWhat, "build")) {
    894         result.append(String("<html><head><title>BlackBerry Browser Build Information</title></head><body><table>"));
    895         result.append(String("<tr><td>Build Computer:  </td><td>"));
     897        result.append(writeHeader("Build"));
     898        result.append(String("<div class='box'><div class='box-title'>Basic</div><table>"));
     899        result.append(String("<tr><td>Built On:  </td><td>"));
    896900        result.append(String(BlackBerry::Platform::BUILDCOMPUTER));
    897901        result.append(String("</td></tr>"));
     
    901905        result.append(String("<tr><td>Build Time:  </td><td>"));
    902906        result.append(String(BlackBerry::Platform::BUILDTIME));
    903         result.append(String("</td></tr><tr><td></td><td></td></tr>"));
     907        result.append(String("</table></div><br>"));
    904908        result.append(String(BlackBerry::Platform::BUILDINFO_WEBKIT));
    905909        result.append(String(BlackBerry::Platform::BUILDINFO_PLATFORM));
    906910        result.append(String(BlackBerry::Platform::BUILDINFO_LIBWEBVIEW));
    907         result.append(String("</table></body></html>"));
     911        result.append(String("</body></html>"));
    908912        handled = true;
    909913    } else if (equalIgnoringCase(aboutWhat, "memory")) {
  • trunk/Source/WebKit/blackberry/ChangeLog

    r122476 r122573  
     12012-07-13  Joshua Netterfield  <jnetterfield@rim.com>
     2
     3        [BlackBerry] Update about:* pages
     4        https://bugs.webkit.org/show_bug.cgi?id=91121
     5
     6        Reviewed by Yong Li.
     7
     8        Update the about:config pages, and improve the aesthetics of the about:build, about:version, about:credits, about:memory, about:config, and similar pages.
     9
     10        No new tests, because there is no new funtionality.
     11
     12        * WebCoreSupport/AboutData.cpp:
     13        (WebCore):
     14        (WebCore::writeFeatures):
     15        (WebCore::numberToHTMLTr): Converted to template function, added bool specialization to write "true" and "false" instead of "1" and "0"
     16        (WebCore::configPage):
     17        (WebCore::memoryPage):
     18        * WebCoreSupport/AboutTemplate.html.cpp: Template for BlackBerry about:* pages.
     19
    1202012-07-12  Benjamin C Meyer  <bmeyer@rim.com>
    221
  • trunk/Source/WebKit/blackberry/WebCoreSupport/AboutData.cpp

    r121196 r122573  
    1919#include "config.h"
    2020#include "AboutData.h"
     21#include "AboutTemplate.html.cpp"
    2122
    2223#include "CString.h"
     
    3637namespace WebCore {
    3738
    38 static String numberToHTMLTr(const String& description, unsigned number)
     39static String writeFeatures(const Vector<String>& trueList, const Vector<String>& falseList)
     40{
     41    String ret;
     42    for (unsigned int i = 0, j = 0; i < trueList.size() || j < falseList.size();) {
     43        bool pickFromFalse = ((i >= trueList.size()) || (j < falseList.size() && strcmp(falseList[j].ascii().data(), trueList[i].ascii().data()) < 0));
     44        const String& item = (pickFromFalse ? falseList : trueList)[ (pickFromFalse ? j : i)++ ];
     45        ret += String("<tr><td><div class='" + String(pickFromFalse ? "false" : "true") + "'" + (item.length() >= 30 ? " style='font-size:10px;' " : "") + ">" + item + "</div></td></tr>");
     46    }
     47    return ret;
     48}
     49
     50template<class T> String numberToHTMLTr(const String& description, T number)
    3951{
    4052    return String("<tr><td>") + description + "</td><td>" + String::number(number) + "</td></tr>";
    4153}
    4254
     55template<> String numberToHTMLTr<bool>(const String& description, bool truth)
     56{
     57    return String("<tr><td>") + description + "</td><td>" + (truth?"true":"false") + "</td></tr>";
     58}
     59
    4360String configPage()
    4461{
    4562    String page;
    46 
    4763#if !defined(PUBLIC_BUILD) || !PUBLIC_BUILD
    48     page = String("<!DOCTYPE html><html><head><title>BlackBerry Browser Configuration Information</title><meta name=\"viewport\" content=\"width=700\">")
    49     + "<style>@media all and (orientation:landscape) { body { -webkit-column-count:2; -webkit-column-rule:solid; font-size:8px; } h1 { -webkit-column-span: all; } ul { font-size: 50%; } } td,li { text-overflow: ellipsis; overflow: hidden; } .list2 { width: 49%; float:left; padding-right:1px; } ul { list-style-type:none; padding:0px; margin:0px; } h1,h2,h3 { text-align:center; margin:0; } h2 { padding:1em 0 0 0; clear:both; } li,td { font-family:\"DejaVu Sans Condensed\"; }</style>"
    50     + "</head><body><h1>BlackBerry Browser Configuration Information</h1>"
    51     + "<h2>Compiler Information</h2><table>"
     64    page = writeHeader("Configuration");
     65    + "<div class=\"box\"><div class=\"box-title\">Compiler Information</div><table class='fixed-table'><col width=75%><col width=25%>"
    5266#if COMPILER(MSVC)
    5367    + "<tr><td>Microsoft Visual C++</td><td>MSVC</td></tr>"
     
    6882    + "";
    6983
    70     page += String("</table><h2>CPU Information</h2><table>")
     84    page += String("</table></div><br><div class='box'><div class='box-title'>CPU Information</div><table class='fixed-table'><col width=75%><col width=25%>")
    7185#if CPU(X86)
    7286    + "<tr><td>X86</td><td></td></tr>"
     
    87101    + "</td></tr>";
    88102
    89     page += String("</table><h2>Platform Information</h2><table>")
     103    page += String("</table></div><br><div class='box'><div class='box-title'>Platform Information</div><table class='fixed-table'><col width=75%><col width=25%>")
    90104    + "<tr><td>WebKit Version</td><td>" + String::number(WEBKIT_MAJOR_VERSION) + "." + String::number(WEBKIT_MINOR_VERSION) + "</td></tr>"
    91105    + "<tr><td>BlackBerry</td><td>"
     
    105119
    106120    BlackBerry::Platform::Settings* settings = BlackBerry::Platform::Settings::instance();
    107     page += String("</table><h2>Platform Settings</h2><table>");
     121    page += String("</table></div><br><div class='box'><div class='box-title'>Platform Settings</div><table style='font-size:11px;' class='fixed-table'><col width=75%><col width=25%>");
    108122    page += numberToHTMLTr("isRSSFilteringEnabled", settings->isRSSFilteringEnabled());
    109123    page += numberToHTMLTr("secondaryThreadStackSize", settings->secondaryThreadStackSize());
     
    111125    page += numberToHTMLTr("shouldReportLowMemoryToUser", settings->shouldReportLowMemoryToUser());
    112126    page += numberToHTMLTr("numberOfBackingStoreTiles", settings->numberOfBackingStoreTiles());
    113     page += numberToHTMLTr("maximumNumberOfBackingStoreTilesAcrossProcesses", settings->maximumNumberOfBackingStoreTilesAcrossProcesses());
     127    page += numberToHTMLTr("maximumNumberOfBacking...AcrossProcesses", settings->maximumNumberOfBackingStoreTilesAcrossProcesses());
    114128    page += numberToHTMLTr("tabsSupportedByClient", settings->tabsSupportedByClient());
    115129    page += numberToHTMLTr("contextMenuEnabled", settings->contextMenuEnabled());
    116130    page += numberToHTMLTr("selectionEnabled", settings->selectionEnabled());
     131    page += numberToHTMLTr("fineCursorControlEnabled", settings->fineCursorControlEnabled());
    117132    page += numberToHTMLTr("alwaysShowKeyboardOnFocus", settings->alwaysShowKeyboardOnFocus());
    118133    page += numberToHTMLTr("allowCenterScrollAdjustmentForInputFields", settings->allowCenterScrollAdjustmentForInputFields());
     
    121136    page += numberToHTMLTr("isWebGLSupported", settings->isWebGLSupported());
    122137    page += numberToHTMLTr("showImageLocationOptionsInGCM", settings->showImageLocationOptionsInGCM());
     138    page += numberToHTMLTr("forceGLES2WindowUsage", settings->forceGLES2WindowUsage());
    123139    page += numberToHTMLTr("maxClickableSpeed", settings->maxClickableSpeed());
    124140    page += numberToHTMLTr("maxJitterRadiusClick", settings->maxJitterRadiusClick());
     
    132148    page += numberToHTMLTr("maxJitterDistanceSingleTouchMove", settings->maxJitterDistanceSingleTouchMove());
    133149    page += numberToHTMLTr("maxJitterDistanceTouchHold", settings->maxJitterDistanceTouchHold());
     150    page += numberToHTMLTr("maxJitterDistanceTapHighlight", settings->maxJitterDistanceTapHighlight());
    134151    page += numberToHTMLTr("maxJitterDistanceHandleDrag", settings->maxJitterDistanceHandleDrag());
    135     page += numberToHTMLTr("maxJitterDistanceTapHighlight", settings->maxJitterDistanceTapHighlight());
    136152    page += numberToHTMLTr("topFatFingerPadding", settings->topFatFingerPadding());
    137153    page += numberToHTMLTr("rightFatFingerPadding", settings->rightFatFingerPadding());
    138154    page += numberToHTMLTr("bottomFatFingerPadding", settings->bottomFatFingerPadding());
     155    page += numberToHTMLTr("maxSelectionNeckHeight", settings->maxSelectionNeckHeight());
    139156    page += numberToHTMLTr("leftFatFingerPadding", settings->leftFatFingerPadding());
    140 
    141 #define FOR_EACH_TRUE_LIST() \
    142     for (unsigned int i = 0; i < trueList.size(); ++i) \
    143         page += String("<li>") + trueList[i] + "</li>"
    144 
    145 #define FOR_EACH_FALSE_LIST() \
    146     for (unsigned int i = 0; i < falseList.size(); ++i) \
    147         page += String("<li>") + falseList[i] + "</li>"
    148157
    149158    Vector<String> trueList, falseList;
    150159    #include "AboutDataEnableFeatures.cpp"
    151     page += String("</table><h2>WebKit ENABLE Information</h2><div class=\"list2\">");
    152     page += String("<h3>ENABLE</h3><ul>");
    153     FOR_EACH_TRUE_LIST();
    154     page += String("</ul></div><div class=\"list2\"><h3>don't ENABLE</h3><ul>");
    155     FOR_EACH_FALSE_LIST();
    156     page += String("</ul></div>");
     160    page += String("</table></div><br><div class='box'><div class='box-title'>WebKit Features (ENABLE_)</div><table class='fixed-table'>");
     161
     162    page += writeFeatures(trueList, falseList);
    157163
    158164    trueList.clear();
    159165    falseList.clear();
    160166    #include "AboutDataHaveFeatures.cpp"
    161     page += String("</table><h2>WebKit HAVE Information</h2><div class=\"list2\">");
    162     page += String("<h3>HAVE</h3><ul>");
    163     FOR_EACH_TRUE_LIST();
    164     page += String("</ul></div><div class=\"list2\"><h3>don't HAVE</h3><ul>");
    165     FOR_EACH_FALSE_LIST();
    166     page += String("</ul></div>");
     167    page += String("</table></div><br><div class='box'><div class='box-title'>WebKit Features (HAVE_)</div><table class='fixed-table'>");
     168
     169    page += writeFeatures(trueList, falseList);
    167170
    168171    trueList.clear();
    169172    falseList.clear();
    170173    #include "AboutDataUseFeatures.cpp"
    171     page += String("<h2>WebKit USE Information</h2><div class=\"list2\">");
    172     page += String("<h3>USE</h3><ul>");
    173     FOR_EACH_TRUE_LIST();
    174     page += String("</ul></div><div class=\"list2\"><h3>don't USE</h3><ul>");
    175     FOR_EACH_FALSE_LIST();
    176     page += String("</ul></div>");
    177 
    178     page += String("</body></html>");
     174    page += String("</table></div><br><div class='box'><div class='box-title'>WebKit Features (USE_)</div><table class='fixed-table'>");
     175    page += writeFeatures(trueList, falseList);
     176    page += String("</table></div></body></html>");
    179177#endif
    180178
     
    206204    String page;
    207205
    208     // generate memory information
    209     page = "<html><head><title>BlackBerry Browser Memory Information</title></head><body><h2>BlackBerry Browser Memory Information</h2>";
     206    page = writeHeader("Memory")
     207    + "<div class=\"box\"><div class=\"box-title\">Cache Information<br><div style='font-size:11px;color:#A8A8A8'>Size, Living, and Decoded are expressed in KB.</div><br></div><table class='fixed-table'><col width=75%><col width=25%>";
    210208
    211209    // generate cache information
     
    213211    MemoryCache::Statistics cacheStat = cacheInc->getStatistics();
    214212
    215     page += "<h2>Cache Information</h2>"
    216             "<table align=\"center\" rules=\"all\"><tr> <th>Item</th> <th>Count</th> <th>Size<br>KB</th> <th>Living<br>KB</th> <th>Decoded<br>KB</th></tr>";
     213    page += "<tr> <th align=left>Item</th> <th align=left>Count</th> <th align=left>Size</th> <th align=left>Living</th> <th align=left>Decoded</th></tr>";
    217214
    218215    MemoryCache::TypeStatistic total;
     
    235232    page += cacheTypeStatisticToHTMLTr("Fonts", cacheStat.fonts);
    236233
    237     page += "</table>";
     234    page += "</table></div><br>";
    238235
    239236#if !defined(PUBLIC_BUILD) || !PUBLIC_BUILD
     
    245242    OwnPtr<JSC::TypeCountSet> protectedObjectTypeCounts = mainHeap.protectedObjectTypeCounts();
    246243
    247     page += "<h2>JS engine memory usage</h2><table align=\"center\" rules=\"all\">";
     244    page += "<div class='box'><div class='box-title'>JS engine memory usage</div><table class='fixed-table'><col width=75%><col width=25%>";
    248245
    249246    page += numberToHTMLTr("Stack size", jscMemoryStat.stackBytes);
     
    256253    page += numberToHTMLTr("Protected global object count", mainHeap.protectedGlobalObjectCount());
    257254
    258     page += "</table>";
    259 
    260     page += "<h3>Object type counts</h3><table align=\"center\" rules=\"all\">";
     255    page += "</table></div><br>";
     256
     257    page += "<div class='box'><div class='box-title'>Object type counts</div><table class='fixed-table'><col width=75%><col width=25%>";
    261258    dumpJSCTypeCountSetToTableHTML(page, objectTypeCounts.get());
    262     page += "</table>";
    263 
    264     page += "<h3>Protected object type counts</h3><table align=\"center\" rules=\"all\">";
     259    page += "</table></div><br>";
     260
     261    page += "<div class='box'><div class='box-title'>Protected object type counts</div><table class='fixed-table'><col width=75%><col width=25%>";
    265262    dumpJSCTypeCountSetToTableHTML(page, protectedObjectTypeCounts.get());
    266     page += "</table>";
     263    page += "</table></div><br>";
    267264
    268265    // Malloc info.
    269266    struct mallinfo mallocInfo = mallinfo();
    270267
    271     page += "<h2>Malloc Information</h2><table align=\"center\" rules=\"all\">";
     268    page += "<div class='box'><div class='box-title'>Malloc Information</div><table class='fixed-table'><col width=75%><col width=25%>";
    272269
    273270    page += numberToHTMLTr("Total space in use", mallocInfo.usmblks + mallocInfo.uordblks);
     
    287284        page += numberToHTMLTr("Process total mapped memory", processInfo.st_size);
    288285
    289     page += "</table>";
     286    page += "</table></div>";
    290287#endif
    291288
  • trunk/Source/WebKit/blackberry/WebCoreSupport/AboutDataEnableFeatures.in

    r118909 r122573  
    1 3D_CANVAS
    2 3D_PLUGIN
    313D_RENDERING
    42ACCELERATED_2D_CANVAS
     
    75ASSEMBLER_WX_EXCLUSIVE
    86BATTERY_STATUS
    9 BLACKBERRY_CREDENTIAL_PERSIST
    10 BLACKBERRY_DEBUG_MEMORY
    117BLOB
    128BRANCH_COMPACTION
    139CHANNEL_MESSAGING
    1410CLASSIC_INTERPRETER
    15 CODEBLOCK_SAMPLING
     11CLIENT_BASED_GEOLOCATION
    1612COMPARE_AND_SWAP
    1713COMPUTED_GOTO_CLASSIC_INTERPRETER
    18 CONTEXT_MENUS
    1914CSS_FILTERS
    2015CSS_GRID_LAYOUT
     16CSS_IMAGE_SET
    2117CSS_SHADERS
    2218DASHBOARD_SUPPORT
     19CUSTOM_SCHEME_HANDLER
    2320DATALIST
    2421DATA_TRANSFER_ITEMS
    25 DEBUG_MATH_LAYOUT
     22DASHBOARD_SUPPORT
    2623DEBUG_WITH_BREAKPOINT
    2724DETAILS
     
    2926DFG_JIT
    3027DIRECTORY_UPLOAD
    31 DOUBLE_TAP_CENTERS
    3228DOWNLOAD_ATTRIBUTE
    3329DRAG_SUPPORT
    34 DRT
    35 EVENT_MODE_METATAGS
    3630EXECUTABLE_ALLOCATOR_DEMAND
    3731EXECUTABLE_ALLOCATOR_FIXED
    38 EXPERIMENTAL_FEATURE
    39 FAST_MALLOC_MATCH_VALIDATION
    4032FAST_MOBILE_SCROLLING
    4133FILE_SYSTEM
     
    4537FULLSCREEN_API
    4638GAMEPAD
    47 GC_LOGGING
    4839GC_VALIDATION
    4940GEOLOCATION
    5041GESTURE_EVENTS
    51 GESTURE_RECOGNIZER
    52 GGC
     42GLIB_SUPPORT
    5343GLOBAL_FASTMALLOC_NEW
    5444HIGH_DPI_CANVAS
    5545ICONDATABASE
     46IFRAME_SEAMLESS
    5647IMAGE_DECODER_DOWN_SAMPLING
    5748INDEXED_DATABASE
     
    6859JAVASCRIPT_I18N_API
    6960JAVA_BRIDGE
     61JAVASCRIPT_DEBUGGER
    7062JIT
    71 JIT_OPTIMIZE_PROPERTY_ACCESS
    72 JIT_USE_SOFT_MODULO
    7363JIT_VERBOSE
    7464JIT_VERBOSE_OSR
    75 LARGE_HEAP
    7665LEGACY_NOTIFICATIONS
     66LEGACY_WEBKIT_BLOB_BUILDER
    7767LINK_PREFETCH
    7868LLINT
    79 MAC_JAVA_BRIDGE
    8069MATHML
    8170MEDIA_SOURCE
     
    9079NETSCAPE_PLUGIN_API
    9180NETSCAPE_PLUGIN_METADATA_CACHE
    92 NEW_XML
     81NETWORK_INFO
    9382NOTIFICATIONS
    94 NO_LISTBOX_RENDERING
    9583OPCODE_SAMPLING
    96 OPCODE_STATS
    9784OPENTYPE_SANITIZER
    9885ORIENTATION_EVENTS
     86OVERFLOW_SCROLLING
    9987PAGE_VISIBILITY_API
    10088PAN_SCROLLING
     89PARSED_STYLE_SHEET_CACHING
     90PAGE_POPUP
    10191PARALLEL_GC
    102 PARALLEL_JOBS
    103 PASSWORD_ECHO
    10492PLUGIN_PACKAGE_SIMPLE_HASH
    10593PLUGIN_PROCESS
     
    114102REQUEST_ANIMATION_FRAME
    115103RUBBER_BANDING
    116 RUN_TIME_HEURISTICS
    117 RXI_IMAGE_FORMAT
    118104SAMPLING_COUNTERS
    119105SAMPLING_FLAGS
    120106SAMPLING_REGIONS
    121107SAMPLING_THREAD
     108SCRIPTED_SPEECH
    122109SHADOW_DOM
    123110SHARED_WORKERS
    124111SIMPLE_HEAP_PROFILING
    125 SINGLE_THREADED
    126 SKIA_GPU_CANVAS
    127 SKIA_TEXT
    128112SMOOTH_SCROLLING
    129 SPEECH_INPUT
    130113SPELLCHECK
     114SUBPIXEL_LAYOUT
    131115SQL_DATABASE
    132116STYLE_SCOPED
     
    136120TEXT_CARET
    137121TEXT_NOTIFICATIONS_ONLY
     122THREADED_SCROLLING
    138123THREADING_GENERIC
     124THREADED_SCROLLING
    139125THREADING_LIBDISPATCH
    140126THREADING_OPENMP
    141 THREADING_SCROLLING
    142127TOUCH_EVENTS
    143128TOUCH_ICON_LOADING
     
    153138WEB_ARCHIVE
    154139WEB_AUDIO
    155 WEB_PROCESS_SANDBOX
     140WEB_INTENTS
    156141WEB_SOCKETS
    157142WEB_TIMING
    158143WORKERS
    159144WRITE_BARRIER_PROFILING
    160 WTF_MALLOC_VALIDATION
    161 XHR_RESPONSE_BLOB
    162 XHTMLMP
    163145XSLT
    164146YARR_JIT
  • trunk/Source/WebKit/blackberry/WebCoreSupport/AboutDataHaveFeatures.in

    r113672 r122573  
    11ACCESSIBILITY
    2 ASSEMBLER
    3 AVCF
    4 CG_INTERPOLATION_MEDIUM
    5 COMPUTED_GOTO
    62DISPATCH_H
    7 DTRACE
    83ERRNO_H
    9 HEADER_DETECTION_H
    104HOSTED_CORE_ANIMATION
    11 INTTYPES_H
    125INVERTED_WHEEL_EVENTS
    136ISDEBUGGERPRESENT
    147LANGINFO_H
     8LAYER_HOSTING_IN_WINDOW_SERVER
    159MADV_DONTNEED
    1610MADV_FREE
    1711MADV_FREE_REUSE
    18 MERGESORT
    1912MMAP
    2013NETWORK_CFDATA_ARRAY_CALLBACK
    21 NULLPTR
    22 PATH_BASED_BORDER_RADIUS_DRAWING
    2314PTHREAD_H
    24 PTHREAD_MACHDEP_H
    2515PTHREAD_NP_H
    2616PTHREAD_RWLOCK
    2717PTHREAD_SETNAME_NP
    28 QRAWFONT
    29 QSTYLE
    3018READLINE
    3119RUNLOOP_TIMER
    3220SBRK
    3321SIGNAL_H
    34 STDINT_H
    3522STRINGS_H
    3623STRNSTR
     
    4128TM_GMTOFF
    4229TM_ZONE
    43 VARIADIC_MACRO
    4430VASPRINTF
    4531VIRTUALALLOC
    46 WEBCOMPOSITOR
    47 WKQCA
  • trunk/Source/WebKit/blackberry/WebCoreSupport/AboutDataUseFeatures.in

    r113672 r122573  
    1 ACCELERATE
    21ACCELERATED_COMPOSITING
    3 ACCELERATED_COMPOSITING_PLUGIN_LAYER
     2ARENA_ALLOC_ALIGNMENT_INTEGER
    43ATSUI
    54AUTOCORRECTION_PANEL
     
    1514CG_INTERPOLATION_MEDIUM
    1615CHROME_NETWORK_STACK
     16CHROMIUM_NET
    1717CONCATENATED_IMPULSE_RESPONSES
    1818CONSOLE_ENTRY_POINT
     
    5353PTHREADS
    5454PTHREAD_GETSPECIFIC_DIRECT
    55 QT4_UNICODE
    56 QTKIT
    57 QT_MOBILITY_SYSTEMINFO
    58 QT_MULTIMEDIA
    5955QUERY_PERFORMANCE_COUNTER
    60 QXMLQUERY
    61 QXMLSTREAM
    6256REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR
    6357REQUEST_ANIMATION_FRAME_TIMER
Note: See TracChangeset for help on using the changeset viewer.