Chromium Code Reviews| Index: extensions/common/api/mojo/developer_private.mojom |
| diff --git a/extensions/common/api/mojo/developer_private.mojom b/extensions/common/api/mojo/developer_private.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3ffdd7c17b4ee8f192e084a45625b08b2450dced |
| --- /dev/null |
| +++ b/extensions/common/api/mojo/developer_private.mojom |
| @@ -0,0 +1,25 @@ |
| +// 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. |
| + |
| +module extensions.mojom; |
| + |
| +struct UpdateExtensionConfigurationParams { |
| + string extension_id; |
| + bool has_file_access; |
|
Ken Rockot(use gerrit already)
2016/06/20 17:19:24
Another possible pattern here would be to define c
|
| + bool file_access; |
| + bool has_incognito_access; |
| + bool incognito_access; |
| + bool has_error_collection; |
| + bool error_collection; |
| + bool has_run_on_all_urls; |
| + bool run_on_all_urls; |
| + bool has_show_action_button; |
| + bool show_action_button; |
| +}; |
| + |
| +interface DeveloperPrivate { |
|
Devlin
2016/06/18 01:24:59
Ideally, this interface (and corresponding structs
Ken Rockot(use gerrit already)
2016/06/20 17:19:25
Generated from what, the IDL? I don't think we rea
Devlin
2016/06/20 17:49:23
I think there's multiple scopes here. What I'm mo
|
| + UpdateExtensionConfiguration( |
| + bool is_user_gesture, |
| + UpdateExtensionConfigurationParams params) => (); |
| +}; |