| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 #include "modules/mediastream/MediaStream.h" | 85 #include "modules/mediastream/MediaStream.h" |
| 86 #include "modules/mediastream/MediaStreamRegistry.h" | 86 #include "modules/mediastream/MediaStreamRegistry.h" |
| 87 #include "platform/Cursor.h" | 87 #include "platform/Cursor.h" |
| 88 #include "platform/DragImage.h" | 88 #include "platform/DragImage.h" |
| 89 #include "platform/PlatformResourceLoader.h" | 89 #include "platform/PlatformResourceLoader.h" |
| 90 #include "platform/RuntimeEnabledFeatures.h" | 90 #include "platform/RuntimeEnabledFeatures.h" |
| 91 #include "platform/UserGestureIndicator.h" | 91 #include "platform/UserGestureIndicator.h" |
| 92 #include "platform/geometry/FloatRect.h" | 92 #include "platform/geometry/FloatRect.h" |
| 93 #include "platform/loader/fetch/FetchRequest.h" | 93 #include "platform/loader/fetch/FetchRequest.h" |
| 94 #include "platform/loader/fetch/MemoryCache.h" | 94 #include "platform/loader/fetch/MemoryCache.h" |
| 95 #include "platform/loader/fetch/ResourceError.h" |
| 95 #include "platform/loader/fetch/ResourceFetcher.h" | 96 #include "platform/loader/fetch/ResourceFetcher.h" |
| 96 #include "platform/network/ResourceError.h" | |
| 97 #include "platform/scroll/Scrollbar.h" | 97 #include "platform/scroll/Scrollbar.h" |
| 98 #include "platform/scroll/ScrollbarTestSuite.h" | 98 #include "platform/scroll/ScrollbarTestSuite.h" |
| 99 #include "platform/scroll/ScrollbarTheme.h" | 99 #include "platform/scroll/ScrollbarTheme.h" |
| 100 #include "platform/scroll/ScrollbarThemeMock.h" | 100 #include "platform/scroll/ScrollbarThemeMock.h" |
| 101 #include "platform/scroll/ScrollbarThemeOverlayMock.h" | 101 #include "platform/scroll/ScrollbarThemeOverlayMock.h" |
| 102 #include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h" | 102 #include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h" |
| 103 #include "platform/testing/URLTestHelpers.h" | 103 #include "platform/testing/URLTestHelpers.h" |
| 104 #include "platform/testing/UnitTestHelpers.h" | 104 #include "platform/testing/UnitTestHelpers.h" |
| 105 #include "platform/weborigin/KURLHash.h" | 105 #include "platform/weborigin/KURLHash.h" |
| 106 #include "platform/weborigin/SchemeRegistry.h" | 106 #include "platform/weborigin/SchemeRegistry.h" |
| (...skipping 11351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11458 "document.querySelector('input').focus();")); | 11458 "document.querySelector('input').focus();")); |
| 11459 | 11459 |
| 11460 // Verify that the right WebWidgetClient has been notified. | 11460 // Verify that the right WebWidgetClient has been notified. |
| 11461 EXPECT_TRUE(webWidgetClient.didShowVirtualKeyboard()); | 11461 EXPECT_TRUE(webWidgetClient.didShowVirtualKeyboard()); |
| 11462 | 11462 |
| 11463 remoteFrame->close(); | 11463 remoteFrame->close(); |
| 11464 webViewHelper.reset(); | 11464 webViewHelper.reset(); |
| 11465 } | 11465 } |
| 11466 | 11466 |
| 11467 } // namespace blink | 11467 } // namespace blink |
| OLD | NEW |