| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 // The behavior of queuing events and replaying them can be disabled by a | 40 // The behavior of queuing events and replaying them can be disabled by a |
| 41 // layout test by setting eventSender.dragMode to false. | 41 // layout test by setting eventSender.dragMode to false. |
| 42 | 42 |
| 43 #include "EventSender.h" | 43 #include "EventSender.h" |
| 44 | 44 |
| 45 #include "KeyCodeMapping.h" | 45 #include "KeyCodeMapping.h" |
| 46 #include "MockSpellCheck.h" | 46 #include "MockSpellCheck.h" |
| 47 #include "TestCommon.h" | 47 #include "TestCommon.h" |
| 48 #include "TestInterfaces.h" | 48 #include "TestInterfaces.h" |
| 49 #include "public/platform/WebDragData.h" | 49 #include "public/platform/WebDragData.h" |
| 50 #include "public/platform/WebPoint.h" | |
| 51 #include "public/platform/WebString.h" | 50 #include "public/platform/WebString.h" |
| 52 #include "public/platform/WebVector.h" | 51 #include "public/platform/WebVector.h" |
| 53 #include "public/testing/WebTestDelegate.h" | 52 #include "public/testing/WebTestDelegate.h" |
| 54 #include "public/testing/WebTestProxy.h" | 53 #include "public/testing/WebTestProxy.h" |
| 55 #include "public/web/WebContextMenuData.h" | 54 #include "public/web/WebContextMenuData.h" |
| 56 #include "public/web/WebDragOperation.h" | |
| 57 #include "public/web/WebTouchPoint.h" | 55 #include "public/web/WebTouchPoint.h" |
| 58 #include "public/web/WebView.h" | 56 #include "public/web/WebView.h" |
| 59 #include <deque> | 57 #include <deque> |
| 60 | 58 |
| 61 #ifdef WIN32 | 59 #ifdef WIN32 |
| 62 #include "public/web/win/WebInputEventFactory.h" | 60 #include "public/web/win/WebInputEventFactory.h" |
| 63 #elif __APPLE__ | 61 #elif __APPLE__ |
| 64 #include "public/web/mac/WebInputEventFactory.h" | 62 #include "public/web/mac/WebInputEventFactory.h" |
| 65 #elif defined(ANDROID) | 63 #elif defined(ANDROID) |
| 66 #include "public/web/android/WebInputEventFactory.h" | 64 #include "public/web/android/WebInputEventFactory.h" |
| (...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 { | 1444 { |
| 1447 result->setNull(); | 1445 result->setNull(); |
| 1448 } | 1446 } |
| 1449 | 1447 |
| 1450 void EventSender::clearKillRing(const CppArgumentList&, CppVariant* result) | 1448 void EventSender::clearKillRing(const CppArgumentList&, CppVariant* result) |
| 1451 { | 1449 { |
| 1452 result->setNull(); | 1450 result->setNull(); |
| 1453 } | 1451 } |
| 1454 | 1452 |
| 1455 } | 1453 } |
| OLD | NEW |