| 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 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 | 32 |
| 33 #include "WebFrame.h" | 33 #include "WebFrame.h" |
| 34 | 34 |
| 35 #include "DocumentMarkerController.h" | 35 #include "DocumentMarkerController.h" |
| 36 #include "FloatRect.h" | 36 #include "FloatRect.h" |
| 37 #include "Frame.h" | 37 #include "Frame.h" |
| 38 #include "FrameSelection.h" |
| 38 #include "FrameTestHelpers.h" | 39 #include "FrameTestHelpers.h" |
| 39 #include "FrameView.h" | 40 #include "FrameView.h" |
| 40 #include "PlatformContextSkia.h" | 41 #include "PlatformContextSkia.h" |
| 41 #include "Range.h" | 42 #include "Range.h" |
| 42 #include "RenderView.h" | 43 #include "RenderView.h" |
| 43 #include "ResourceError.h" | 44 #include "ResourceError.h" |
| 44 #include "Settings.h" | 45 #include "Settings.h" |
| 45 #include "SkBitmap.h" | 46 #include "SkBitmap.h" |
| 46 #include "SkCanvas.h" | 47 #include "SkCanvas.h" |
| 47 #include "URLTestHelpers.h" | 48 #include "URLTestHelpers.h" |
| (...skipping 2637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2685 EXPECT_FALSE(client.wasProgrammaticScroll()); | 2686 EXPECT_FALSE(client.wasProgrammaticScroll()); |
| 2686 EXPECT_TRUE(client.wasUserScroll()); | 2687 EXPECT_TRUE(client.wasUserScroll()); |
| 2687 client.reset(); | 2688 client.reset(); |
| 2688 | 2689 |
| 2689 m_webView->close(); | 2690 m_webView->close(); |
| 2690 m_webView = 0; | 2691 m_webView = 0; |
| 2691 } | 2692 } |
| 2692 | 2693 |
| 2693 | 2694 |
| 2694 } // namespace | 2695 } // namespace |
| OLD | NEW |