Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 chrome.mojom; | |
| 6 | |
| 7 import "url/mojo/url.mojom"; | |
| 8 | |
| 9 interface OSDDHandler { | |
| 10 // Notification that the page has an OpenSearch description document | |
| 11 // associated with it. | |
| 12 OnPageHasOSDD(url.mojom.Url page_url, url.mojom.Url osdd_url); | |
|
Sam McNally
2017/03/15 00:38:48
We usually don't include "On" in mojo method names
martis
2017/03/15 05:00:56
Done.
| |
| 13 }; | |
| OLD | NEW |