| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) | 3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) |
| 4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. | 4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "MockWebSpeechRecognizer.h" | 36 #include "MockWebSpeechRecognizer.h" |
| 37 #include "NotificationPresenter.h" | 37 #include "NotificationPresenter.h" |
| 38 #include "TestInterfaces.h" | 38 #include "TestInterfaces.h" |
| 39 #include "WebPermissions.h" | 39 #include "WebPermissions.h" |
| 40 #include "public/platform/WebData.h" | 40 #include "public/platform/WebData.h" |
| 41 #include "public/platform/WebDeviceMotionData.h" | 41 #include "public/platform/WebDeviceMotionData.h" |
| 42 #include "public/platform/WebDeviceOrientationData.h" | 42 #include "public/platform/WebDeviceOrientationData.h" |
| 43 #include "public/platform/WebPoint.h" | 43 #include "public/platform/WebPoint.h" |
| 44 #include "public/platform/WebURLResponse.h" | 44 #include "public/platform/WebURLResponse.h" |
| 45 #include "public/testing/WebPreferences.h" | 45 #include "public/testing/WebPreferences.h" |
| 46 #include "public/testing/WebTask.h" | |
| 47 #include "public/testing/WebTestDelegate.h" | 46 #include "public/testing/WebTestDelegate.h" |
| 48 #include "public/testing/WebTestProxy.h" | 47 #include "public/testing/WebTestProxy.h" |
| 49 #include "public/web/WebBindings.h" | 48 #include "public/web/WebBindings.h" |
| 50 #include "public/web/WebDataSource.h" | 49 #include "public/web/WebDataSource.h" |
| 51 #include "public/web/WebDocument.h" | 50 #include "public/web/WebDocument.h" |
| 52 #include "public/web/WebElement.h" | 51 #include "public/web/WebElement.h" |
| 53 #include "public/web/WebFindOptions.h" | 52 #include "public/web/WebFindOptions.h" |
| 54 #include "public/web/WebFrame.h" | 53 #include "public/web/WebFrame.h" |
| 55 #include "public/web/WebGeolocationClientMock.h" | 54 #include "public/web/WebGeolocationClientMock.h" |
| 56 #include "public/web/WebInputElement.h" | 55 #include "public/web/WebInputElement.h" |
| 57 #include "public/web/WebMIDIClientMock.h" | 56 #include "public/web/WebMIDIClientMock.h" |
| 58 #include "public/web/WebScriptSource.h" | 57 #include "public/web/WebScriptSource.h" |
| 59 #include "public/web/WebSecurityPolicy.h" | 58 #include "public/web/WebSecurityPolicy.h" |
| 60 #include "public/web/WebSerializedScriptValue.h" | 59 #include "public/web/WebSerializedScriptValue.h" |
| 61 #include "public/web/WebSettings.h" | 60 #include "public/web/WebSettings.h" |
| 62 #include "public/web/WebSurroundingText.h" | 61 #include "public/web/WebSurroundingText.h" |
| 63 #include "public/web/WebView.h" | 62 #include "public/web/WebView.h" |
| 64 #include "v8/include/v8.h" | 63 #include "v8/include/v8.h" |
| 65 #include <limits> | 64 #include <limits> |
| 66 #include <memory> | |
| 67 | 65 |
| 68 #if defined(__linux__) || defined(ANDROID) | 66 #if defined(__linux__) || defined(ANDROID) |
| 69 #include "public/web/linux/WebFontRendering.h" | 67 #include "public/web/linux/WebFontRendering.h" |
| 70 #endif | 68 #endif |
| 71 | 69 |
| 72 using namespace blink; | 70 using namespace blink; |
| 73 using namespace std; | 71 using namespace std; |
| 74 | 72 |
| 75 namespace WebTestRunner { | 73 namespace WebTestRunner { |
| 76 | 74 |
| (...skipping 2043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2120 result->setNull(); | 2118 result->setNull(); |
| 2121 } | 2119 } |
| 2122 | 2120 |
| 2123 void TestRunner::setPointerLockWillFailSynchronously(const CppArgumentList&, Cpp
Variant* result) | 2121 void TestRunner::setPointerLockWillFailSynchronously(const CppArgumentList&, Cpp
Variant* result) |
| 2124 { | 2122 { |
| 2125 m_pointerLockPlannedResult = PointerLockWillFailSync; | 2123 m_pointerLockPlannedResult = PointerLockWillFailSync; |
| 2126 result->setNull(); | 2124 result->setNull(); |
| 2127 } | 2125 } |
| 2128 | 2126 |
| 2129 } | 2127 } |
| OLD | NEW |