1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35

content / browser / interest_group / interest_group_storage.proto [blame]

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

syntax = "proto3";

option optimize_for = LITE_RUNTIME;

package content;

message AdProtos {
  message AdProto {
    string render_url = 1;
    optional string size_group = 2;
    optional string metadata = 3;
    optional string buyer_reporting_id = 4;
    optional string buyer_and_seller_reporting_id = 5;
    repeated string selectable_buyer_and_seller_reporting_ids = 8;
    optional string ad_render_id = 6;
    repeated string allowed_reporting_origins = 7;
  }
  repeated AdProto ads = 1;
}

message BiddingAndAuctionServerKeyProtos {
  message BiddingAndAuctionServerKeyProto {
    bytes key = 1;
    int32 id = 2;
  }
  repeated BiddingAndAuctionServerKeyProto keys = 1;
}

message KAnonKeyProtos {
  repeated bytes keys = 1;
}