| 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_context_support.h" | 5 #include "cc/test/test_context_support.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 display_bounds, | 81 display_bounds, |
| 82 uv_rect); | 82 uv_rect); |
| 83 } | 83 } |
| 84 } | 84 } |
| 85 | 85 |
| 86 uint64_t TestContextSupport::ShareGroupTracingGUID() const { | 86 uint64_t TestContextSupport::ShareGroupTracingGUID() const { |
| 87 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
| 88 return 0; | 88 return 0; |
| 89 } | 89 } |
| 90 | 90 |
| 91 void TestContextSupport::SetErrorMessageCallback( |
| 92 const base::Callback<void(const char*, int32_t)>& callback) {} |
| 93 |
| 91 } // namespace cc | 94 } // namespace cc |
| OLD | NEW |