| Index: ui/base/ime/composition_text.h
|
| diff --git a/ui/base/ime/composition.h b/ui/base/ime/composition_text.h
|
| similarity index 77%
|
| rename from ui/base/ime/composition.h
|
| rename to ui/base/ime/composition_text.h
|
| index e59d976ea9fa3942670931415cb766ac43154f7f..2014e50c48d9bb88c113a8b2b8cbfc9b59db4f8c 100644
|
| --- a/ui/base/ime/composition.h
|
| +++ b/ui/base/ime/composition_text.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef UI_BASE_IME_COMPOSITION_H_
|
| -#define UI_BASE_IME_COMPOSITION_H_
|
| +#ifndef UI_BASE_IME_COMPOSITION_TEXT_H_
|
| +#define UI_BASE_IME_COMPOSITION_TEXT_H_
|
| #pragma once
|
|
|
| #include "base/string16.h"
|
| @@ -12,10 +12,10 @@
|
|
|
| namespace ui {
|
|
|
| -// A struct represents the status of an ongoing composition.
|
| -struct Composition {
|
| - Composition();
|
| - ~Composition();
|
| +// A struct represents the status of an ongoing composition text.
|
| +struct CompositionText {
|
| + CompositionText();
|
| + ~CompositionText();
|
|
|
| void Clear();
|
|
|
| @@ -36,4 +36,4 @@ struct Composition {
|
|
|
| } // namespace ui
|
|
|
| -#endif // UI_BASE_IME_COMPOSITION_H_
|
| +#endif // UI_BASE_IME_COMPOSITION_TEXT_H_
|
|
|