| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/software_renderer.h" | 5 #include "cc/software_renderer.h" |
| 6 | 6 |
| 7 #include <public/WebImage.h> | 7 #include <public/WebImage.h> |
| 8 | 8 |
| 9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
| 10 #include "cc/debug_border_draw_quad.h" | 10 #include "cc/debug_border_draw_quad.h" |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 m_outputDevice->Unlock(); | 374 m_outputDevice->Unlock(); |
| 375 } | 375 } |
| 376 | 376 |
| 377 void SoftwareRenderer::setVisible(bool visible) | 377 void SoftwareRenderer::setVisible(bool visible) |
| 378 { | 378 { |
| 379 if (m_visible == visible) | 379 if (m_visible == visible) |
| 380 return; | 380 return; |
| 381 m_visible = visible; | 381 m_visible = visible; |
| 382 } | 382 } |
| 383 | 383 |
| 384 void SoftwareRenderer::setLatencyInfo(const WebKit::WebLatencyInfoImpl& latency_
info) |
| 385 { |
| 386 } |
| 387 |
| 384 } // namespace cc | 388 } // namespace cc |
| OLD | NEW |