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

Unified Diff: content/browser/trace_message_filter.h

Issue 10536034: Fix logic reversal bug in TraceMessageFilter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky feedback Created 8 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 | content/browser/trace_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/trace_message_filter.h
diff --git a/content/browser/trace_message_filter.h b/content/browser/trace_message_filter.h
index e11da9d8c2ae6d608ab72a0ad6d4bf80ac839934..ba54a7fb2db9bab35c138170c5e6e78074fd7bbc 100644
--- a/content/browser/trace_message_filter.h
+++ b/content/browser/trace_message_filter.h
@@ -46,7 +46,8 @@ class TraceMessageFilter : public content::BrowserMessageFilter {
// Awaiting ack for previously sent SendEndTracing
bool is_awaiting_end_ack_;
- bool is_awaiting_bpf_ack_;
+ // Awaiting ack for previously sent SendGetTraceBufferPercentFull
+ bool is_awaiting_buffer_percent_full_ack_;
DISALLOW_COPY_AND_ASSIGN(TraceMessageFilter);
};
« no previous file with comments | « no previous file | content/browser/trace_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698