| 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_FEATURE_ENGINE_RENDER_WIDGET_FEATURE_H_ | 5 #ifndef BLIMP_ENGINE_FEATURE_ENGINE_RENDER_WIDGET_FEATURE_H_ |
| 6 #define BLIMP_ENGINE_FEATURE_ENGINE_RENDER_WIDGET_FEATURE_H_ | 6 #define BLIMP_ENGINE_FEATURE_ENGINE_RENDER_WIDGET_FEATURE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 InputMessageConverter input_message_converter_; | 175 InputMessageConverter input_message_converter_; |
| 176 | 176 |
| 177 SettingsManager* settings_manager_; | 177 SettingsManager* settings_manager_; |
| 178 | 178 |
| 179 // Outgoing message processors for RENDER_WIDGET, COMPOSITOR and INPUT types. | 179 // Outgoing message processors for RENDER_WIDGET, COMPOSITOR and INPUT types. |
| 180 std::unique_ptr<BlimpMessageProcessor> render_widget_message_sender_; | 180 std::unique_ptr<BlimpMessageProcessor> render_widget_message_sender_; |
| 181 std::unique_ptr<BlimpMessageProcessor> compositor_message_sender_; | 181 std::unique_ptr<BlimpMessageProcessor> compositor_message_sender_; |
| 182 std::unique_ptr<BlimpMessageProcessor> input_message_sender_; | 182 std::unique_ptr<BlimpMessageProcessor> input_message_sender_; |
| 183 std::unique_ptr<BlimpMessageProcessor> ime_message_sender_; | 183 std::unique_ptr<BlimpMessageProcessor> ime_message_sender_; |
| 184 | 184 |
| 185 base::WeakPtrFactory<EngineRenderWidgetFeature> weak_factory_; |
| 186 |
| 185 DISALLOW_COPY_AND_ASSIGN(EngineRenderWidgetFeature); | 187 DISALLOW_COPY_AND_ASSIGN(EngineRenderWidgetFeature); |
| 186 }; | 188 }; |
| 187 | 189 |
| 188 } // namespace engine | 190 } // namespace engine |
| 189 } // namespace blimp | 191 } // namespace blimp |
| 190 | 192 |
| 191 #endif // BLIMP_ENGINE_FEATURE_ENGINE_RENDER_WIDGET_FEATURE_H_ | 193 #endif // BLIMP_ENGINE_FEATURE_ENGINE_RENDER_WIDGET_FEATURE_H_ |
| OLD | NEW |