| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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 BLIMP_NET_INPUT_MESSAGE_GENERATOR_H_ | |
| 6 #define BLIMP_NET_INPUT_MESSAGE_GENERATOR_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "blimp/net/blimp_net_export.h" | |
| 12 #include "net/base/completion_callback.h" | |
| 13 | |
| 14 namespace blink { | |
| 15 class WebGestureEvent; | |
| 16 } | |
| 17 | |
| 18 namespace blimp { | |
| 19 | |
| 20 class BlimpMessage; | |
| 21 | |
| 22 // Handles creating serialized InputMessage protos from a stream of | |
| 23 // WebGestureEvents. This class may be stateful to optimize the size of the | |
| 24 // serialized transmission data. See InputMessageConverter for the deserialize | |
| 25 // code. | |
| 26 class BLIMP_NET_EXPORT InputMessageGenerator { | |
| 27 public: | |
| 28 InputMessageGenerator(); | |
| 29 ~InputMessageGenerator(); | |
| 30 | |
| 31 // Builds a BlimpMessage from |event| that has the basic input event fields | |
| 32 // populated. This might make use of state sent from previous | |
| 33 // BlimpMessage::INPUT messages. It is up to the caller to populate the | |
| 34 // non-input fields and to send the BlimpMessage. | |
| 35 std::unique_ptr<BlimpMessage> GenerateMessage( | |
| 36 const blink::WebGestureEvent& event); | |
| 37 | |
| 38 private: | |
| 39 DISALLOW_COPY_AND_ASSIGN(InputMessageGenerator); | |
| 40 }; | |
| 41 | |
| 42 } // namespace blimp | |
| 43 | |
| 44 #endif // BLIMP_NET_INPUT_MESSAGE_GENERATOR_H_ | |
| OLD | NEW |