Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
Sam McNally
2016/06/20 01:27:11
Add per-file *.mojom owners to chrome/common/OWNER
tibell
2016/06/20 03:19:55
Done.
| |
| 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 mojom; | |
| 6 | |
| 7 import "url/mojo/url.mojom"; | |
| 8 | |
| 9 [Native] | |
| 10 enum InstallState; | |
| 11 | |
| 12 interface SearchProviderInstallState { | |
| 13 // Find out if the given url's security origin is installed as a search | |
| 14 // provider. | |
| 15 [Sync] | |
| 16 GetInstallState( | |
| 17 url.mojom.Url page_url, | |
| 18 url.mojom.Url inquiry_url) => ( | |
| 19 InstallState install); | |
| 20 }; | |
| OLD | NEW |