| Index: win8/metro_driver/ime/text_service_delegate.h
|
| diff --git a/win8/metro_driver/ime/text_service_delegate.h b/win8/metro_driver/ime/text_service_delegate.h
|
| index 9b22a8238ec628880b1ea1c969263845e469ebb4..b78bec0d4d4fc6c60d2255cc1302513ddb10cda7 100644
|
| --- a/win8/metro_driver/ime/text_service_delegate.h
|
| +++ b/win8/metro_driver/ime/text_service_delegate.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef WIN8_METRO_DRIVER_IME_TEXT_SERVICE_DELEGATE_H_
|
| #define WIN8_METRO_DRIVER_IME_TEXT_SERVICE_DELEGATE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/strings/string16.h"
|
|
|
| namespace metro_viewer {
|
| @@ -27,8 +28,8 @@ class TextServiceDelegate {
|
| // that the composition is canceled.
|
| virtual void OnCompositionChanged(
|
| const base::string16& text,
|
| - int32 selection_start,
|
| - int32 selection_end,
|
| + int32_t selection_start,
|
| + int32_t selection_end,
|
| const std::vector<metro_viewer::UnderlineInfo>& underlines) = 0;
|
|
|
| // Called when |text| is committed.
|
|
|