| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "modules/canvas2d/CanvasRenderingContext2D.h" | 5 #include "modules/canvas2d/CanvasRenderingContext2D.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include "bindings/core/v8/V8Binding.h" | 8 #include "bindings/core/v8/V8BindingForCore.h" |
| 9 #include "bindings/core/v8/V8BindingForTesting.h" | 9 #include "bindings/core/v8/V8BindingForTesting.h" |
| 10 #include "core/dom/Document.h" | 10 #include "core/dom/Document.h" |
| 11 #include "core/frame/FrameView.h" | 11 #include "core/frame/FrameView.h" |
| 12 #include "core/frame/ImageBitmap.h" | 12 #include "core/frame/ImageBitmap.h" |
| 13 #include "core/frame/Settings.h" | 13 #include "core/frame/Settings.h" |
| 14 #include "core/html/HTMLCanvasElement.h" | 14 #include "core/html/HTMLCanvasElement.h" |
| 15 #include "core/html/ImageData.h" | 15 #include "core/html/ImageData.h" |
| 16 #include "core/imagebitmap/ImageBitmapOptions.h" | 16 #include "core/imagebitmap/ImageBitmapOptions.h" |
| 17 #include "core/layout/LayoutBoxModelObject.h" | 17 #include "core/layout/LayoutBoxModelObject.h" |
| 18 #include "core/loader/EmptyClients.h" | 18 #include "core/loader/EmptyClients.h" |
| (...skipping 1393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1412 | 1412 |
| 1413 // Wake up again, which should request a compositing update synchronously. | 1413 // Wake up again, which should request a compositing update synchronously. |
| 1414 GetDocument().GetPage()->SetVisibilityState(kPageVisibilityStateVisible, | 1414 GetDocument().GetPage()->SetVisibilityState(kPageVisibilityStateVisible, |
| 1415 false); | 1415 false); |
| 1416 EXPECT_EQ(!!CANVAS2D_HIBERNATION_ENABLED, | 1416 EXPECT_EQ(!!CANVAS2D_HIBERNATION_ENABLED, |
| 1417 layer->NeedsCompositingInputsUpdate()); | 1417 layer->NeedsCompositingInputsUpdate()); |
| 1418 RunUntilIdle(); // Clear task queue. | 1418 RunUntilIdle(); // Clear task queue. |
| 1419 } | 1419 } |
| 1420 | 1420 |
| 1421 } // namespace blink | 1421 } // namespace blink |
| OLD | NEW |