blob: 75540292c01c0360f5e4cdf99bd8b15cae4d56f9 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// These are pseudo-wire types. We need these types to marshal data from the
// xsurface API. These messages can and should depend on wire types, and the
// Chrome UI code need not parse these.
syntax = "proto3";
package feedpacking;
import "components/feed/core/proto/v2/wire/data_operation.proto";
option optimize_for = LITE_RUNTIME;
message DismissData {
repeated feedwire.DataOperation data_operations = 1;
}