webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp
branchRCL_3
changeset 59 1f3c3f2f5b0a
parent 17 c8a366e56285
child 93 79859ed3eea9
--- a/webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp	Fri Mar 12 15:48:51 2010 +0200
+++ b/webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp	Mon Mar 15 12:44:50 2010 +0200
@@ -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);
     }
 
 // ============================================================================