webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp
branchRCL_3
changeset 49 919f36ff910f
parent 48 79859ed3eea9
--- a/webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp	Tue Aug 31 16:17:46 2010 +0300
+++ b/webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp	Wed Sep 01 12:28:30 2010 +0100
@@ -44,6 +44,8 @@
 _LIT( KMiniViewEnabled,      "MiniViewEnabled" );
 _LIT( KBlanketPermGranted,   "BlanketPermissionGranted" );         // optional
 _LIT( KPreInstalled,         "PreInstalled" );
+_LIT( KProcessUid,           "ProcessUid" );
+_LIT( KMimeType,             "MimeType" );
 
 static void XmlFree( TAny* aPtr )
     {
@@ -193,6 +195,16 @@
     property.name.Set( KPreInstalled );
     property.type = EWidgetPropTypeInt;
     iProperties.AppendL(property);
+    //
+    property.id = EProcessUid;
+    property.name.Set( KProcessUid );
+    property.type = EWidgetPropTypeInt; // not TUid
+    iProperties.AppendL(property);
+    //
+    property.id = EMimeType;
+    property.name.Set( KMimeType );
+    property.type = EWidgetPropTypeString;
+    iProperties.AppendL(property);
     }
 
 // ============================================================================