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

Side by Side Diff: components/password_manager/core/browser/affiliation_api.proto

Issue 767163005: Add AffiliationFetcher to fetch authoritative affiliation information regarding facets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN build. Created 6 years 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 2014 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 syntax = "proto2";
6
7 package affiliation_pb;
8
9 option optimize_for = LITE_RUNTIME;
10
11 // A collection of facets affiliated with each other, i.e. an equivalence class.
12 message Affiliation {
13 repeated string facet = 1;
14 }
15
16 // Encapsulates a lookup request to the Affiliation API.
17 message LookupAffiliationRequest {
18 // The facet URIs to query.
19 repeated string facet = 1;
20 }
21
22 // Encapsulates a lookup response from the the Affiliation API.
23 message LookupAffiliationResponse {
24 // For each queried facet, the corresponding equivalence class, if any.
25 repeated Affiliation affiliation = 1;
26 }
OLDNEW
« no previous file with comments | « components/password_manager/core/browser/BUILD.gn ('k') | components/password_manager/core/browser/affiliation_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698