1 // Copyright 2020 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef WEBLAYER_PUBLIC_JS_COMMUNICATION_WEB_MESSAGE_H_
6 #define WEBLAYER_PUBLIC_JS_COMMUNICATION_WEB_MESSAGE_H_
7 
8 #include "base/strings/string16.h"
9 
10 namespace weblayer {
11 
12 struct WebMessage {
13   WebMessage();
14   ~WebMessage();
15 
16   base::string16 message;
17 };
18 
19 }  // namespace weblayer
20 
21 #endif  // WEBLAYER_PUBLIC_JS_COMMUNICATION_WEB_MESSAGE_H_
22