Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(799)

Side by Side Diff: chrome/common/search_provider.mojom

Issue 2072613003: Convert GetSearchProviderInstallState to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename to search_provider.mojom Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698