| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 #include "core/page/Chrome.h" | 95 #include "core/page/Chrome.h" |
| 96 #include "core/page/ChromeClient.h" | 96 #include "core/page/ChromeClient.h" |
| 97 #include "core/frame/DOMWindow.h" | 97 #include "core/frame/DOMWindow.h" |
| 98 #include "core/page/EventHandler.h" | 98 #include "core/page/EventHandler.h" |
| 99 #include "core/frame/FrameView.h" | 99 #include "core/frame/FrameView.h" |
| 100 #include "core/page/Page.h" | 100 #include "core/page/Page.h" |
| 101 #include "core/page/PagePopupController.h" | 101 #include "core/page/PagePopupController.h" |
| 102 #include "core/page/PrintContext.h" | 102 #include "core/page/PrintContext.h" |
| 103 #include "core/page/Settings.h" | 103 #include "core/page/Settings.h" |
| 104 #include "core/frame/animation/AnimationController.h" | 104 #include "core/frame/animation/AnimationController.h" |
| 105 #include "core/page/scrolling/ScrollingCoordinator.h" | |
| 106 #include "core/platform/Cursor.h" | 105 #include "core/platform/Cursor.h" |
| 107 #include "core/platform/graphics/GraphicsLayer.h" | 106 #include "core/platform/graphics/GraphicsLayer.h" |
| 108 #include "core/platform/graphics/filters/FilterOperation.h" | 107 #include "core/platform/graphics/filters/FilterOperation.h" |
| 109 #include "core/platform/graphics/filters/FilterOperations.h" | 108 #include "core/platform/graphics/filters/FilterOperations.h" |
| 110 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" | 109 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" |
| 111 #include "core/rendering/CompositedLayerMapping.h" | 110 #include "core/rendering/CompositedLayerMapping.h" |
| 112 #include "core/rendering/RenderLayer.h" | 111 #include "core/rendering/RenderLayer.h" |
| 113 #include "core/rendering/RenderLayerCompositor.h" | 112 #include "core/rendering/RenderLayerCompositor.h" |
| 114 #include "core/rendering/RenderMenuList.h" | 113 #include "core/rendering/RenderMenuList.h" |
| 115 #include "core/rendering/RenderObject.h" | 114 #include "core/rendering/RenderObject.h" |
| (...skipping 2194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2310 } | 2309 } |
| 2311 | 2310 |
| 2312 document->updateLayout(); | 2311 document->updateLayout(); |
| 2313 | 2312 |
| 2314 RenderView* view = document->renderView(); | 2313 RenderView* view = document->renderView(); |
| 2315 if (view->compositor()) | 2314 if (view->compositor()) |
| 2316 view->compositor()->updateCompositingLayers(CompositingUpdateFinishAllDe
ferredWork); | 2315 view->compositor()->updateCompositingLayers(CompositingUpdateFinishAllDe
ferredWork); |
| 2317 } | 2316 } |
| 2318 | 2317 |
| 2319 } | 2318 } |
| OLD | NEW |