Changeset 85803 in webkit


Ignore:
Timestamp:
May 4, 2011 4:26:32 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-04 Siddharth Mathur <siddharth.mathur@nokia.com>

Reviewed by Laszlo Gombos.

[Qt][Wk2][Symbian] Capabilities for Qt MiniBrowser and QtWebProcess on Symbian
https://bugs.webkit.org/show_bug.cgi?id=59462

  • WebProcess.pro: Add Symbian OS capabilities to web process executable. Also enable data paging flag and prevent application's icon from showing up in the application grid.

2011-05-04 Siddharth Mathur <siddharth.mathur@nokia.com>

Reviewed by Laszlo Gombos.

[Qt][Wk2][Symbian] Capabilities for Qt MiniBrowser and QtWebProcess on Symbian
https://bugs.webkit.org/show_bug.cgi?id=59462

  • MiniBrowser/qt/MiniBrowser.pro: Add Symbian OS capabilities to executable. Also enable data paging.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r85795 r85803  
     12011-05-04  Siddharth Mathur  <siddharth.mathur@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt][Wk2][Symbian] Capabilities for Qt MiniBrowser and QtWebProcess on Symbian
     6        https://bugs.webkit.org/show_bug.cgi?id=59462
     7
     8        * WebProcess.pro: Add Symbian OS capabilities to web process executable. Also enable
     9        data paging flag and prevent application's icon from showing up in the application grid.
     10
    1112011-05-04  Adam Roben  <aroben@apple.com>
    212
  • trunk/Source/WebKit2/WebProcess.pro

    r83416 r85803  
    3636symbian {
    3737    TARGET.UID3 = 0xA000E544
    38     TARGET.CAPABILITY = ReadUserData WriteUserData NetworkServices
     38    MMP_RULES += pageddata
     39    RSS_RULES += "hidden = KAppIsHidden;" # No icon in application grid
     40   
     41    TARGET.CAPABILITY *= ReadUserData
     42    TARGET.CAPABILITY *= WriteUserData
     43    TARGET.CAPABILITY *= NetworkServices  # QtNetwork and Bearer
     44   
     45    # See QtMobility docs on Symbian capabilities:
     46    # http://doc.qt.nokia.com/qtmobility/quickstart.html
     47    TARGET.CAPABILITY *= ReadDeviceData
     48    TARGET.CAPABILITY *= WriteDeviceData
     49    TARGET.CAPABILITY *= LocalServices
    3950}
    4051
  • trunk/Tools/ChangeLog

    r85802 r85803  
     12011-05-04  Siddharth Mathur  <siddharth.mathur@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt][Wk2][Symbian] Capabilities for Qt MiniBrowser and QtWebProcess on Symbian
     6        https://bugs.webkit.org/show_bug.cgi?id=59462
     7
     8        * MiniBrowser/qt/MiniBrowser.pro: Add Symbian OS capabilities to executable. Also enable data paging.
     9
    1102011-05-04  Eric Seidel  <eric@webkit.org>
    211
  • trunk/Tools/MiniBrowser/qt/MiniBrowser.pro

    r82671 r85803  
    4949symbian {
    5050    TARGET.UID3 = 0xA000E545
    51     TARGET.CAPABILITY = ReadUserData WriteUserData NetworkServices
     51    MMP_RULES += pageddata
     52   
     53    TARGET.CAPABILITY *= ReadUserData
     54    TARGET.CAPABILITY *= WriteUserData
     55    TARGET.CAPABILITY *= NetworkServices  # QtNetwork and Bearer
     56    TARGET.CAPABILITY *= PowerMgmt        # killing web process from UI process
     57   
     58    # See QtMobility docs on Symbian capabilities:
     59    # http://doc.qt.nokia.com/qtmobility/quickstart.html
     60    TARGET.CAPABILITY *= Location         # geolocation
     61    TARGET.CAPABILITY *= ReadDeviceData   # geolocation, sensors
     62    TARGET.CAPABILITY *= WriteDeviceData  # geolocation
     63    TARGET.CAPABILITY *= LocalServices    # geolocation, sysinfo
    5264}
    5365
Note: See TracChangeset for help on using the changeset viewer.