summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl/input_event_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/shared_impl/input_event_impl.h')
-rw-r--r--ppapi/shared_impl/input_event_impl.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/ppapi/shared_impl/input_event_impl.h b/ppapi/shared_impl/input_event_impl.h
index 094eb8c..fc7fb92 100644
--- a/ppapi/shared_impl/input_event_impl.h
+++ b/ppapi/shared_impl/input_event_impl.h
@@ -6,7 +6,6 @@
#define PPAPI_SHARED_IMPL_INPUT_EVENT_IMPL_H_
#include <string>
-#include <vector>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
@@ -42,11 +41,6 @@ struct PPAPI_SHARED_EXPORT InputEventData {
uint32_t key_code;
std::string character_text;
-
- std::vector<uint32_t> composition_segment_offsets;
- int32_t composition_target_segment;
- uint32_t composition_selection_start;
- uint32_t composition_selection_end;
};
// This simple class implements the PPB_InputEvent_API in terms of the
@@ -84,10 +78,6 @@ class PPAPI_SHARED_EXPORT InputEventImpl
virtual PP_Bool GetWheelScrollByPage() OVERRIDE;
virtual uint32_t GetKeyCode() OVERRIDE;
virtual PP_Var GetCharacterText() OVERRIDE;
- virtual uint32_t GetIMESegmentNumber() OVERRIDE;
- virtual uint32_t GetIMESegmentOffset(uint32_t index) OVERRIDE;
- virtual int32_t GetIMETargetSegment() OVERRIDE;
- virtual void GetIMESelection(uint32_t* start, uint32_t* end) OVERRIDE;
private:
InputEventData data_;
@@ -98,3 +88,4 @@ class PPAPI_SHARED_EXPORT InputEventImpl
} // namespace ppapi
#endif // PPAPI_SHARED_IMPL_INPUT_EVENT_IMPL_H_
+