web_message.h 490 B

12345678910111213141516171819202122
  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. #ifndef WEBLAYER_PUBLIC_JS_COMMUNICATION_WEB_MESSAGE_H_
  5. #define WEBLAYER_PUBLIC_JS_COMMUNICATION_WEB_MESSAGE_H_
  6. #include <string>
  7. namespace weblayer {
  8. struct WebMessage {
  9. WebMessage();
  10. ~WebMessage();
  11. std::u16string message;
  12. };
  13. } // namespace weblayer
  14. #endif // WEBLAYER_PUBLIC_JS_COMMUNICATION_WEB_MESSAGE_H_