Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: ppapi/shared_impl/ppapi_permissions.cc

Issue 819203002: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/proxy/ppp_messaging_proxy_perftest.cc ('k') | remoting/codec/video_encoder_vpx.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ppapi/shared_impl/ppapi_permissions.h" 5 #include "ppapi/shared_impl/ppapi_permissions.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "ppapi/shared_impl/ppapi_switches.h" 9 #include "ppapi/shared_impl/ppapi_switches.h"
10 10
(...skipping 10 matching lines...) Expand all
21 return PpapiPermissions(PERMISSION_ALL_BITS); 21 return PpapiPermissions(PERMISSION_ALL_BITS);
22 } 22 }
23 23
24 // static 24 // static
25 PpapiPermissions PpapiPermissions::GetForCommandLine(uint32 base_perms) { 25 PpapiPermissions PpapiPermissions::GetForCommandLine(uint32 base_perms) {
26 uint32 additional_permissions = 0; 26 uint32 additional_permissions = 0;
27 27
28 #if !defined(OS_NACL) 28 #if !defined(OS_NACL)
29 // Testing permissions. The testing flag implies all permissions since the 29 // Testing permissions. The testing flag implies all permissions since the
30 // test plugin needs to test all interfaces. 30 // test plugin needs to test all interfaces.
31 if (CommandLine::ForCurrentProcess()->HasSwitch( 31 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
32 switches::kEnablePepperTesting)) 32 switches::kEnablePepperTesting))
33 additional_permissions |= ppapi::PERMISSION_ALL_BITS; 33 additional_permissions |= ppapi::PERMISSION_ALL_BITS;
34 #endif 34 #endif
35 35
36 return PpapiPermissions(base_perms | additional_permissions); 36 return PpapiPermissions(base_perms | additional_permissions);
37 } 37 }
38 38
39 bool PpapiPermissions::HasPermission(Permission perm) const { 39 bool PpapiPermissions::HasPermission(Permission perm) const {
40 // Check that "perm" is a power of two to make sure the caller didn't set 40 // Check that "perm" is a power of two to make sure the caller didn't set
41 // more than one permission bit. We may want to change how permissions are 41 // more than one permission bit. We may want to change how permissions are
42 // represented in the future so don't want callers making assumptions about 42 // represented in the future so don't want callers making assumptions about
43 // bits. 43 // bits.
44 uint32 perm_int = static_cast<uint32>(perm); 44 uint32 perm_int = static_cast<uint32>(perm);
45 if (!perm_int) 45 if (!perm_int)
46 return true; // You always have "no permission". 46 return true; // You always have "no permission".
47 DCHECK((perm_int & (perm_int - 1)) == 0); 47 DCHECK((perm_int & (perm_int - 1)) == 0);
48 return !!(permissions_ & perm_int); 48 return !!(permissions_ & perm_int);
49 } 49 }
50 50
51 } // namespace ppapi 51 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/proxy/ppp_messaging_proxy_perftest.cc ('k') | remoting/codec/video_encoder_vpx.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698