Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: Source/testing/runner/EventSender.cpp

Issue 67313005: Remove duplicated headers from the testing/ directory (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/testing/runner/CppVariant.cpp ('k') | Source/testing/runner/MockWebRTCDataChannelHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698