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

Unified Diff: chrome/common/extensions/permissions/chrome_api_permissions.cc

Issue 1099313003: Add the IDL and stub implementation for the chrome.autofillPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: kalman comments. Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/permissions/chrome_api_permissions.cc
diff --git a/chrome/common/extensions/permissions/chrome_api_permissions.cc b/chrome/common/extensions/permissions/chrome_api_permissions.cc
index 92bb884a0c6a6a227d20623e383984bcbbd99fad..6601fbe0635f2ee3ef559e7a56dc13693c498bb2 100644
--- a/chrome/common/extensions/permissions/chrome_api_permissions.cc
+++ b/chrome/common/extensions/permissions/chrome_api_permissions.cc
@@ -340,7 +340,12 @@ std::vector<APIPermissionInfo*> ChromeAPIPermissions::GetAllPermissions()
"settingsPrivate",
APIPermissionInfo::kFlagCannotBeOptional,
IDS_EXTENSION_PROMPT_WARNING_SETTINGS_PRIVATE,
- PermissionMessage::kSettingsPrivate},
+ PermissionMessage::kAutofillPrivate},
Dan Beam 2015/04/23 20:49:13 ^ why did you change this?
Kyle Horimoto 2015/04/23 22:00:26 Fixed, thanks for catching it.
+ {APIPermission::kAutofillPrivate,
+ "autofillPrivate",
+ APIPermissionInfo::kFlagCannotBeOptional,
+ IDS_EXTENSION_PROMPT_WARNING_AUTOFILL_PRIVATE,
+ PermissionMessage::kAutofillPrivate},
// Full url access permissions.
{APIPermission::kDebugger,

Powered by Google App Engine
This is Rietveld 408576698