| Index: third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h
|
| diff --git a/third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h b/third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cf320558c8ab3a8a71a8f661999075533f29b848
|
| --- /dev/null
|
| +++ b/third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef WebRelatedApplication_h
|
| +#define WebRelatedApplication_h
|
| +
|
| +#include "public/platform/WebString.h"
|
| +
|
| +namespace blink {
|
| +
|
| +struct WebRelatedApplication {
|
| + WebRelatedApplication() {}
|
| +
|
| + WebString platform;
|
| + WebString url;
|
| + WebString id;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // WebRelatedApplication_h
|
|
|