| 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 25 matching lines...) Expand all Loading... |
| 36 #include "DocumentMarkerController.h" | 36 #include "DocumentMarkerController.h" |
| 37 #include "EventHandler.h" | 37 #include "EventHandler.h" |
| 38 #include "Frame.h" | 38 #include "Frame.h" |
| 39 #include "FrameSelection.h" | 39 #include "FrameSelection.h" |
| 40 #include "FrameTestHelpers.h" | 40 #include "FrameTestHelpers.h" |
| 41 #include "FrameView.h" | 41 #include "FrameView.h" |
| 42 #include "HitTestResult.h" | 42 #include "HitTestResult.h" |
| 43 #include "PlatformContextSkia.h" | 43 #include "PlatformContextSkia.h" |
| 44 #include "Range.h" | 44 #include "Range.h" |
| 45 #include "RenderView.h" | 45 #include "RenderView.h" |
| 46 #include "ResourceError.h" | |
| 47 #include "ScrollbarTheme.h" | 46 #include "ScrollbarTheme.h" |
| 48 #include "Settings.h" | 47 #include "Settings.h" |
| 49 #include "SkBitmap.h" | 48 #include "SkBitmap.h" |
| 50 #include "SkCanvas.h" | 49 #include "SkCanvas.h" |
| 51 #include "URLTestHelpers.h" | 50 #include "URLTestHelpers.h" |
| 52 #include "WebDataSource.h" | 51 #include "WebDataSource.h" |
| 53 #include "WebDocument.h" | 52 #include "WebDocument.h" |
| 54 #include "WebFindOptions.h" | 53 #include "WebFindOptions.h" |
| 55 #include "WebFormElement.h" | 54 #include "WebFormElement.h" |
| 56 #include "WebFrameClient.h" | 55 #include "WebFrameClient.h" |
| 57 #include "WebFrameImpl.h" | 56 #include "WebFrameImpl.h" |
| 58 #include "WebHistoryItem.h" | 57 #include "WebHistoryItem.h" |
| 59 #include "WebRange.h" | 58 #include "WebRange.h" |
| 60 #include "WebScriptSource.h" | 59 #include "WebScriptSource.h" |
| 61 #include "WebSearchableFormData.h" | 60 #include "WebSearchableFormData.h" |
| 62 #include "WebSecurityOrigin.h" | 61 #include "WebSecurityOrigin.h" |
| 63 #include "WebSecurityPolicy.h" | 62 #include "WebSecurityPolicy.h" |
| 64 #include "WebSettings.h" | 63 #include "WebSettings.h" |
| 65 #include "WebSpellCheckClient.h" | 64 #include "WebSpellCheckClient.h" |
| 66 #include "WebTextCheckingCompletion.h" | 65 #include "WebTextCheckingCompletion.h" |
| 67 #include "WebTextCheckingResult.h" | 66 #include "WebTextCheckingResult.h" |
| 68 #include "WebViewClient.h" | 67 #include "WebViewClient.h" |
| 69 #include "WebViewImpl.h" | 68 #include "WebViewImpl.h" |
| 70 #include "core/platform/graphics/FloatRect.h" | 69 #include "core/platform/graphics/FloatRect.h" |
| 70 #include "core/platform/network/ResourceError.h" |
| 71 #include "v8.h" | 71 #include "v8.h" |
| 72 #include <public/Platform.h> | 72 #include <public/Platform.h> |
| 73 #include <public/WebFloatRect.h> | 73 #include <public/WebFloatRect.h> |
| 74 #include <public/WebThread.h> | 74 #include <public/WebThread.h> |
| 75 #include <public/WebUnitTestSupport.h> | 75 #include <public/WebUnitTestSupport.h> |
| 76 #include <public/WebURLResponse.h> | 76 #include <public/WebURLResponse.h> |
| 77 #include <wtf/dtoa/utils.h> | 77 #include <wtf/dtoa/utils.h> |
| 78 #include <wtf/Forward.h> | 78 #include <wtf/Forward.h> |
| 79 | 79 |
| 80 using namespace WebKit; | 80 using namespace WebKit; |
| (...skipping 2816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2897 EXPECT_FALSE(client.wasProgrammaticScroll()); | 2897 EXPECT_FALSE(client.wasProgrammaticScroll()); |
| 2898 EXPECT_TRUE(client.wasUserScroll()); | 2898 EXPECT_TRUE(client.wasUserScroll()); |
| 2899 client.reset(); | 2899 client.reset(); |
| 2900 | 2900 |
| 2901 m_webView->close(); | 2901 m_webView->close(); |
| 2902 m_webView = 0; | 2902 m_webView = 0; |
| 2903 } | 2903 } |
| 2904 | 2904 |
| 2905 | 2905 |
| 2906 } // namespace | 2906 } // namespace |
| OLD | NEW |