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

syntax = "proto2";

option optimize_for = LITE_RUNTIME;

package notifications.proto;

// Stores the icon used in a notification. The icon is in PNG format. Each time
// we should only load one icon asynchronously into memory.
// Next tag: 2
message Icon {
  // Raw data of the icon to show in the notification in PNG format.
  optional bytes icon = 1;
}
