| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_FEATURE_IME_FEATURE_H_ | 5 #ifndef BLIMP_CLIENT_CORE_CONTENTS_IME_FEATURE_H_ |
| 6 #define BLIMP_CLIENT_FEATURE_IME_FEATURE_H_ | 6 #define BLIMP_CLIENT_CORE_CONTENTS_IME_FEATURE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "blimp/net/blimp_message_processor.h" | 12 #include "blimp/net/blimp_message_processor.h" |
| 13 #include "ui/base/ime/text_input_type.h" | 13 #include "ui/base/ime/text_input_type.h" |
| 14 | 14 |
| 15 namespace blimp { | 15 namespace blimp { |
| 16 namespace client { | 16 namespace client { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 // Used to send BlimpMessage::IME messages to the engine. | 76 // Used to send BlimpMessage::IME messages to the engine. |
| 77 std::unique_ptr<BlimpMessageProcessor> outgoing_message_processor_; | 77 std::unique_ptr<BlimpMessageProcessor> outgoing_message_processor_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(ImeFeature); | 79 DISALLOW_COPY_AND_ASSIGN(ImeFeature); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace client | 82 } // namespace client |
| 83 } // namespace blimp | 83 } // namespace blimp |
| 84 | 84 |
| 85 #endif // BLIMP_CLIENT_FEATURE_IME_FEATURE_H_ | 85 #endif // BLIMP_CLIENT_CORE_CONTENTS_IME_FEATURE_H_ |
| OLD | NEW |