| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 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 "base/message_loop/message_loop.h" |
| 5 #include "content/browser/compositor/test/no_transport_image_transport_factory.h
" | 6 #include "content/browser/compositor/test/no_transport_image_transport_factory.h
" |
| 6 #include "content/browser/renderer_host/offscreen_canvas_surface_impl.h" | 7 #include "content/browser/renderer_host/offscreen_canvas_surface_impl.h" |
| 7 #include "content/browser/renderer_host/offscreen_canvas_surface_manager.h" | 8 #include "content/browser/renderer_host/offscreen_canvas_surface_manager.h" |
| 8 #include "content/public/test/test_browser_thread.h" | 9 #include "content/public/test/test_browser_thread.h" |
| 9 #include "mojo/public/cpp/bindings/binding.h" | 10 #include "mojo/public/cpp/bindings/binding.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 12 |
| 12 #if defined(OS_ANDROID) | 13 #if defined(OS_ANDROID) |
| 13 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
| 14 #include "content/browser/renderer_host/context_provider_factory_impl_android.h" | 15 #include "content/browser/renderer_host/context_provider_factory_impl_android.h" |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 OffscreenCanvasSurfaceManager::GetInstance()->GetSurfaceInstance( | 111 OffscreenCanvasSurfaceManager::GetInstance()->GetSurfaceInstance( |
| 111 frame_sink_id_b)); | 112 frame_sink_id_b)); |
| 112 | 113 |
| 113 surface_impl_a = nullptr; | 114 surface_impl_a = nullptr; |
| 114 EXPECT_EQ(1, this->getNumSurfaceImplInstances()); | 115 EXPECT_EQ(1, this->getNumSurfaceImplInstances()); |
| 115 surface_impl_b = nullptr; | 116 surface_impl_b = nullptr; |
| 116 EXPECT_EQ(0, this->getNumSurfaceImplInstances()); | 117 EXPECT_EQ(0, this->getNumSurfaceImplInstances()); |
| 117 } | 118 } |
| 118 | 119 |
| 119 } // namespace content | 120 } // namespace content |
| OLD | NEW |