Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: cc/software_renderer.cc

Issue 11293121: Add latency measurement system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor input event changes Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« cc/gl_renderer.h ('K') | « cc/software_renderer.h ('k') | cc/software_renderer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698