#include "chrome/browser/web_applications/web_app_proto_utils.h"
#include <memory>
#include "base/base64.h"
#include "chrome/browser/web_applications/proto/web_app.pb.h"
#include "chrome/browser/web_applications/web_app.h"
#include "chrome/browser/web_applications/web_app_helpers.h"
#include "components/sync/protocol/web_app_specifics.pb.h"
#include "components/webapps/common/web_app_id.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace web_app {
namespace {
Purpose;
const char kStartUrl[] = …;
const char kAppName[] = …;
const char kScope[] = …;
const char kUserPageOrdinal[] = …;
const char kUserLaunchOrdinal[] = …;
const char kIconUrl[] = …;
const int kIconSizePx = …;
}
TEST(WebAppProtoUtilsTest, M85SpecificsProtoParse) { … }
TEST(WebAppProtoUtilsTest, M85SpecificsProtoToWebApp_Minimal) { … }
TEST(WebAppProtoUtilsTest, M85SpecificsProtoToWebApp_FullyPopulated) { … }
TEST(WebAppProtoUtilsTest, SpecificsProtoWithNewFieldParses) { … }
TEST(WebAppProtoUtilsTest, SpecificsProtoWithNewEnumValueParses) { … }
TEST(WebAppProtoUtilsTest, RunOnOsLoginModes) { … }
}