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

Side by Side Diff: blimp/engine/feature/engine_render_widget_feature.h

Issue 2393443004: Blimp: Added spinner to text input dialog (Closed)
Patch Set: nits Created 4 years, 1 month 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
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698