Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(640)

Side by Side Diff: blimp/net/input_message_generator.h

Issue 2632803002: Remove all blimp network code. (Closed)
Patch Set: merge from origin/master for good measure Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/net/input_message_converter.cc ('k') | blimp/net/input_message_generator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « blimp/net/input_message_converter.cc ('k') | blimp/net/input_message_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698