| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "cc/test/test_in_process_context_provider.h" | 5 #include "cc/test/test_in_process_context_provider.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "cc/resources/platform_color.h" | 8 #include "cc/resources/platform_color.h" |
| 9 #include "gpu/GLES2/gl2extchromium.h" | 9 #include "gpu/GLES2/gl2extchromium.h" |
| 10 #include "gpu/command_buffer/client/gl_in_process_context.h" | 10 #include "gpu/command_buffer/client/gl_in_process_context.h" |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 } | 157 } |
| 158 | 158 |
| 159 void TestInProcessContextProvider::DeleteCachedResources() { | 159 void TestInProcessContextProvider::DeleteCachedResources() { |
| 160 if (gr_context_) | 160 if (gr_context_) |
| 161 gr_context_->freeGpuResources(); | 161 gr_context_->freeGpuResources(); |
| 162 } | 162 } |
| 163 | 163 |
| 164 void TestInProcessContextProvider::SetLostContextCallback( | 164 void TestInProcessContextProvider::SetLostContextCallback( |
| 165 const LostContextCallback& lost_context_callback) {} | 165 const LostContextCallback& lost_context_callback) {} |
| 166 | 166 |
| 167 void TestInProcessContextProvider::SetMemoryPolicyChangedCallback( |
| 168 const MemoryPolicyChangedCallback& memory_policy_changed_callback) {} |
| 169 |
| 167 } // namespace cc | 170 } // namespace cc |
| OLD | NEW |