Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 module extensions.mojom; | |
| 6 | |
| 7 struct UpdateExtensionConfigurationParams { | |
| 8 string extension_id; | |
| 9 bool has_file_access; | |
|
Ken Rockot(use gerrit already)
2016/06/20 17:19:24
Another possible pattern here would be to define c
| |
| 10 bool file_access; | |
| 11 bool has_incognito_access; | |
| 12 bool incognito_access; | |
| 13 bool has_error_collection; | |
| 14 bool error_collection; | |
| 15 bool has_run_on_all_urls; | |
| 16 bool run_on_all_urls; | |
| 17 bool has_show_action_button; | |
| 18 bool show_action_button; | |
| 19 }; | |
| 20 | |
| 21 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
| |
| 22 UpdateExtensionConfiguration( | |
| 23 bool is_user_gesture, | |
| 24 UpdateExtensionConfigurationParams params) => (); | |
| 25 }; | |
| OLD | NEW |