OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BLIMP_CLIENT_SESSION_RENDER_WIDGET_FEATURE_H_ | 5 #ifndef BLIMP_CLIENT_FEATURE_RENDER_WIDGET_FEATURE_H_ |
6 #define BLIMP_CLIENT_SESSION_RENDER_WIDGET_FEATURE_H_ | 6 #define BLIMP_CLIENT_FEATURE_RENDER_WIDGET_FEATURE_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
| 10 #include <map> |
| 11 |
10 #include "base/containers/small_map.h" | 12 #include "base/containers/small_map.h" |
11 #include "base/macros.h" | 13 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
13 #include "blimp/client/blimp_client_export.h" | 15 #include "blimp/client/blimp_client_export.h" |
14 #include "blimp/net/blimp_message_processor.h" | 16 #include "blimp/net/blimp_message_processor.h" |
15 #include "blimp/net/input_message_generator.h" | 17 #include "blimp/net/input_message_generator.h" |
16 | 18 |
17 namespace blink { | 19 namespace blink { |
18 class WebInputEvent; | 20 class WebInputEvent; |
19 } | 21 } |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 102 |
101 // Used to send BlimpMessage::COMPOSITOR messages to the engine. | 103 // Used to send BlimpMessage::COMPOSITOR messages to the engine. |
102 scoped_ptr<BlimpMessageProcessor> outgoing_compositor_message_processor_; | 104 scoped_ptr<BlimpMessageProcessor> outgoing_compositor_message_processor_; |
103 | 105 |
104 DISALLOW_COPY_AND_ASSIGN(RenderWidgetFeature); | 106 DISALLOW_COPY_AND_ASSIGN(RenderWidgetFeature); |
105 }; | 107 }; |
106 | 108 |
107 } // namespace client | 109 } // namespace client |
108 } // namespace blimp | 110 } // namespace blimp |
109 | 111 |
110 #endif // BLIMP_CLIENT_SESSION_RENDER_WIDGET_FEATURE_H_ | 112 #endif // BLIMP_CLIENT_FEATURE_RENDER_WIDGET_FEATURE_H_ |
OLD | NEW |