Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_PUBLIC_SESSION_PERMISSION_HELPER_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_PUBLIC_SESSION_PERMISSION_HELPER_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 #include <set> | |
| 10 | |
| 11 #include "base/callback_forward.h" | |
| 12 #include "extensions/common/permissions/api_permission.h" | |
| 13 #include "extensions/common/permissions/api_permission_set.h" | |
| 14 | |
| 15 class ExtensionInstallPrompt; | |
| 16 | |
| 17 namespace content { | |
| 18 class WebContents; | |
| 19 } | |
| 20 | |
| 21 namespace extensions { | |
| 22 | |
| 23 class Extension; | |
| 24 | |
| 25 namespace permission_helper { | |
| 26 | |
| 27 using RequestResolvedCallback = base::Callback<void(const PermissionIDSet&)>; | |
| 28 using PromptFactory = base::Callback<std::unique_ptr<ExtensionInstallPrompt>( | |
| 29 content::WebContents*)>; | |
| 30 | |
| 31 // In Public Sessions, extensions (and apps) are force-installed by admin policy | |
| 32 // so the user does not get a chance to review the permissions for these | |
| 33 // extensions. This is not acceptable from a security/privacy standpoint, so | |
| 34 // when an extension uses one of the sensitive APIs for the first time, we show | |
| 35 // the user a dialog where they can choose whether to allow the extension access | |
| 36 // to the API. | |
| 37 // | |
| 38 // This function sets up the prompt asking the user for additional | |
| 39 // permission(s), handles the result, caches it, and then runs the callback with | |
| 40 // the allowed permissions as the argument. | |
| 41 // | |
| 42 // The user will be prompted about a certain permission only once, and that | |
| 43 // choice will be cached and used in any subsequent requests that use the same | |
| 44 // permission. If a request comes for a permission that is currently being | |
| 45 // prompted, its callback will be queued up to be invoked when the prompt is | |
| 46 // resolved. | |
| 47 // | |
| 48 // Caller must ensure that web_contents is valid. Must be called on UI thread. | |
| 49 void HandlePermissionRequest(const Extension& extension, | |
| 50 const PermissionIDSet& requested_permissions, | |
| 51 content::WebContents* web_contents, | |
| 52 const RequestResolvedCallback& callback, | |
| 53 const PromptFactory& prompt_factory); | |
|
Andrew T Wilson (Slow)
2017/02/11 09:23:24
nit: document that callers can pass in a null prom
Ivan Šandrk
2017/02/13 13:18:20
Done.
| |
| 54 | |
| 55 // Used to completely reset state in between tests. | |
| 56 void ResetPermissionsForTesting(); | |
| 57 | |
| 58 // Sets the ExtensionInstallPrompt to be used in HandlePermissionRequest, useful | |
| 59 // in testing to mock out the ExtensionInstallPrompt. | |
| 60 void SetExtensionInstallPromptForTesting( | |
|
Andrew T Wilson (Slow)
2017/02/11 09:23:24
This function is no longer necessary, correct?
Ivan Šandrk
2017/02/13 13:18:20
Correct, removed.
| |
| 61 ExtensionInstallPrompt* extension_install_prompt); | |
| 62 | |
| 63 } // namespace permission_helper | |
| 64 } // namespace extensions | |
| 65 | |
| 66 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_PUBLIC_SESSION_PERMISSION_HELPER_H _ | |
| OLD | NEW |