X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcontent%2Fbrowser%2Frenderer_host%2Finput%2Fselection_event_type.h;h=567259f04962db62d1183372ffece2943f5eaae3;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=0bf76735f85ab46e27e25b305b5baf392956b298;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/content/browser/renderer_host/input/selection_event_type.h b/src/content/browser/renderer_host/input/selection_event_type.h index 0bf7673..567259f 100644 --- a/src/content/browser/renderer_host/input/selection_event_type.h +++ b/src/content/browser/renderer_host/input/selection_event_type.h @@ -7,10 +7,21 @@ namespace content { +// This file contains a list of events relating to selection and insertion, used +// for notifying Java when the renderer selection has changed. +// +// A Java counterpart will be generated for this enum. +// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.content.browser.input enum SelectionEventType { -#define DEFINE_SELECTION_EVENT_TYPE(name, value) name = value, -#include "content/browser/renderer_host/input/selection_event_type_list.h" -#undef DEFINE_SELECTION_EVENT_TYPE + SELECTION_SHOWN, + SELECTION_CLEARED, + SELECTION_DRAG_STARTED, + SELECTION_DRAG_STOPPED, + INSERTION_SHOWN, + INSERTION_MOVED, + INSERTION_TAPPED, + INSERTION_CLEARED, + INSERTION_DRAG_STARTED, }; } // namespace content