summaryrefslogtreecommitdiffstats
path: root/cc/debug/rendering_stats_instrumentation.h
diff options
context:
space:
mode:
authorsuyash.s@samsung.com <suyash.s@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-10 14:25:39 +0000
committersuyash.s@samsung.com <suyash.s@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-10 14:25:39 +0000
commit0978f09812152bc4f2e008c52bd1abdb129556ab (patch)
tree8aff3217ff4a0a347b0784986d4e7194ca54834f /cc/debug/rendering_stats_instrumentation.h
parent2212e865ec96a23185e1ebe425167ade97ae5111 (diff)
downloadchromium_src-0978f09812152bc4f2e008c52bd1abdb129556ab.zip
chromium_src-0978f09812152bc4f2e008c52bd1abdb129556ab.tar.gz
chromium_src-0978f09812152bc4f2e008c52bd1abdb129556ab.tar.bz2
Modifying the RenderingStats object names to be more thread specific
There was a TODO in cc/debug/rendering_stats_instrumentation.h for renaming the RenderingStats objects in order to depict the thread for which they are. Patch for doing the same. Review URL: https://codereview.chromium.org/290413003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276015 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/debug/rendering_stats_instrumentation.h')
-rw-r--r--cc/debug/rendering_stats_instrumentation.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/cc/debug/rendering_stats_instrumentation.h b/cc/debug/rendering_stats_instrumentation.h
index e1061dc..6640131 100644
--- a/cc/debug/rendering_stats_instrumentation.h
+++ b/cc/debug/rendering_stats_instrumentation.h
@@ -59,11 +59,10 @@ class CC_EXPORT RenderingStatsInstrumentation {
RenderingStatsInstrumentation();
private:
- // TODO(ernstm): rename to *_thread_rendering_stats_*
- MainThreadRenderingStats main_stats_;
- MainThreadRenderingStats main_stats_accu_;
- ImplThreadRenderingStats impl_stats_;
- ImplThreadRenderingStats impl_stats_accu_;
+ MainThreadRenderingStats main_thread_rendering_stats_;
+ MainThreadRenderingStats main_thread_rendering_stats_accu_;
+ ImplThreadRenderingStats impl_thread_rendering_stats_;
+ ImplThreadRenderingStats impl_thread_rendering_stats_accu_;
bool record_rendering_stats_;