blob: 1a480b22290d257144bc99535100cae497398efd [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2020 The Chromium Authors
Alan Cuttereb525cd02020-06-20 03:12:422// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_PROTO_UTILS_H_
6#define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_PROTO_UTILS_H_
7
8#include <vector>
9
Carlos Frias514cf672020-08-13 23:53:4310#include "chrome/browser/web_applications/proto/web_app.pb.h"
Alan Cuttereb525cd02020-06-20 03:12:4211#include "chrome/browser/web_applications/web_app.h"
12#include "components/sync/protocol/web_app_specifics.pb.h"
Anton Bikineev46bbb972021-05-15 17:53:5313#include "third_party/abseil-cpp/absl/types/optional.h"
Alan Cuttereb525cd02020-06-20 03:12:4214
Evan Stadefbe5ca52021-08-19 00:51:43