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_ENGINE_BROWSER_ENGINE_RENDER_WIDGET_MESSAGE_PROCESSOR_H_ | 5 #ifndef BLIMP_ENGINE_BROWSER_ENGINE_RENDER_WIDGET_MESSAGE_PROCESSOR_H_ |
6 #define BLIMP_ENGINE_BROWSER_ENGINE_RENDER_WIDGET_MESSAGE_PROCESSOR_H_ | 6 #define BLIMP_ENGINE_BROWSER_ENGINE_RENDER_WIDGET_MESSAGE_PROCESSOR_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <vector> | 10 #include <vector> |
9 | 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/net/blimp_message_processor.h" | 15 #include "blimp/net/blimp_message_processor.h" |
14 #include "blimp/net/input_message_processor.h" | 16 #include "blimp/net/input_message_processor.h" |
15 | 17 |
16 namespace blink { | 18 namespace blink { |
17 class WebInputEvent; | 19 class WebInputEvent; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 84 |
83 BlimpMessageProcessor* render_widget_message_processor_; | 85 BlimpMessageProcessor* render_widget_message_processor_; |
84 BlimpMessageProcessor* compositor_message_processor_; | 86 BlimpMessageProcessor* compositor_message_processor_; |
85 | 87 |
86 DISALLOW_COPY_AND_ASSIGN(EngineRenderWidgetMessageProcessor); | 88 DISALLOW_COPY_AND_ASSIGN(EngineRenderWidgetMessageProcessor); |
87 }; | 89 }; |
88 | 90 |
89 } // namespace blimp | 91 } // namespace blimp |
90 | 92 |
91 #endif // BLIMP_ENGINE_BROWSER_ENGINE_RENDER_WIDGET_MESSAGE_PROCESSOR_H_ | 93 #endif // BLIMP_ENGINE_BROWSER_ENGINE_RENDER_WIDGET_MESSAGE_PROCESSOR_H_ |
OLD | NEW |