Chromium Code Reviews| Index: third_party/WebKit/Source/modules/extensions/UpdateExtensionConfigurationParams.idl |
| diff --git a/third_party/WebKit/Source/modules/extensions/UpdateExtensionConfigurationParams.idl b/third_party/WebKit/Source/modules/extensions/UpdateExtensionConfigurationParams.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..dc1bd51262956b06e4ee3da77215f9a64423483a |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/extensions/UpdateExtensionConfigurationParams.idl |
| @@ -0,0 +1,12 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +dictionary UpdateExtensionConfigurationParams { |
|
Devlin
2016/06/18 01:24:59
It would be helpful if we could put this definitio
|
| + DOMString extensionId; |
| + boolean? fileAccess = null; |
| + boolean? incognitoAccess = null; |
| + boolean? errorCollection = null; |
| + boolean? runOnAllUrls = null; |
| + boolean? showActionButton = null; |
| +}; |