< prev index next >

modules/javafx.web/src/main/native/Source/WebCore/page/java/EventHandlerJava.cpp

Print this page
rev 11020 : 8201563: Update copyright header for files modified in 2018
Reviewed-by:
   1 /*
   2  * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 #include "config.h"
   5 
   6 #include "NotImplemented.h"
   7 
   8 #include "EventHandler.h"
   9 #include "FocusController.h"
  10 #include "Frame.h"
  11 #include "FrameView.h"
  12 #include "MouseEventWithHitTestResults.h"
  13 #include "Page.h"
  14 #include "PlatformKeyboardEvent.h"
  15 #include "Widget.h"
  16 #include "DataTransfer.h"
  17 
  18 namespace WebCore {
  19 
  20 #if ENABLE(DRAG_SUPPORT)
  21 const Seconds EventHandler::TextDragDelay { 0_s };
  22 #endif


   1 /*
   2  * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 #include "config.h"
   5 
   6 #include "NotImplemented.h"
   7 
   8 #include "EventHandler.h"
   9 #include "FocusController.h"
  10 #include "Frame.h"
  11 #include "FrameView.h"
  12 #include "MouseEventWithHitTestResults.h"
  13 #include "Page.h"
  14 #include "PlatformKeyboardEvent.h"
  15 #include "Widget.h"
  16 #include "DataTransfer.h"
  17 
  18 namespace WebCore {
  19 
  20 #if ENABLE(DRAG_SUPPORT)
  21 const Seconds EventHandler::TextDragDelay { 0_s };
  22 #endif


< prev index next >