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

Unified Diff: src/log.cc

Issue 2810019: [Isolates] Move Profiler::paused_ into non-static members. (Closed)
Patch Set: Reflect last review comment. Created 10 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/log.cc
diff --git a/src/log.cc b/src/log.cc
index 0a0883b99c1821f39de419b27e1dfe2bd86d30c4..8ace77d01db33b4c9186c0166ca4a6c46ba4c812 100644
--- a/src/log.cc
+++ b/src/log.cc
@@ -109,7 +109,7 @@ class Profiler: public Thread {
void Run();
// Pause and Resume TickSample data collection.
- bool paused() { return paused_; }
+ bool paused() const { return paused_; }
void pause() { paused_ = true; }
void resume() { paused_ = false; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698