Change policy scope for browser/clipboard 20/102920/1
authorJaemin Ryu <jm77.ryu@samsung.com>
Tue, 6 Dec 2016 22:57:32 +0000 (07:57 +0900)
committerJaemin Ryu <jm77.ryu@samsung.com>
Tue, 6 Dec 2016 23:49:52 +0000 (08:49 +0900)
Change-Id: I77734b5a70f5108c25eed2f2f7f15ced7fffc48e
Signed-off-by: Jaemin Ryu <jm77.ryu@samsung.com>
server/restriction.cpp

index f80313d..eef3781 100644 (file)
@@ -150,7 +150,7 @@ int RestrictionPolicy::setClipboardState(int enable)
 
 int RestrictionPolicy::getClipboardState()
 {
-       return context.getPolicy<int>("clipboard");
+       return context.getPolicy<int>("clipboard", context.getPeerUid());
 }
 
 int RestrictionPolicy::setUsbDebuggingState(int enable)
@@ -264,7 +264,7 @@ int RestrictionPolicy::setBrowserState(int enable)
        try {
                SetPolicyAllowed(context, "browser", enable);
        } catch (runtime::Exception& e) {
-        ERROR("Failed to enforce browser [olicy");
+        ERROR("Failed to enforce browser policy");
         return -1;
     }
        return 0;
@@ -272,7 +272,7 @@ int RestrictionPolicy::setBrowserState(int enable)
 
 int RestrictionPolicy::getBrowserState()
 {
-       return context.getPolicy<int>("browser");
+       return context.getPolicy<int>("browser", context.getPeerUid());
 }
 
 DEFINE_POLICY(RestrictionPolicy);