OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CONTENT_BROWSER_TRACE_MESSAGE_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_TRACE_MESSAGE_FILTER_H_ |
6 #define CONTENT_BROWSER_TRACE_MESSAGE_FILTER_H_ | 6 #define CONTENT_BROWSER_TRACE_MESSAGE_FILTER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/memory/ref_counted_memory.h" | |
joth
2012/02/08 13:22:20
needed?
Iain Merrick
2012/02/08 14:11:24
Oops, no. Removed.
| |
11 #include "content/public/browser/browser_message_filter.h" | 12 #include "content/public/browser/browser_message_filter.h" |
12 | 13 |
13 // This class sends and receives trace messages on the browser process. | 14 // This class sends and receives trace messages on the browser process. |
14 // See also: trace_controller.h | 15 // See also: trace_controller.h |
15 // See also: child_trace_message_filter.h | 16 // See also: child_trace_message_filter.h |
16 class TraceMessageFilter : public content::BrowserMessageFilter { | 17 class TraceMessageFilter : public content::BrowserMessageFilter { |
17 public: | 18 public: |
18 TraceMessageFilter(); | 19 TraceMessageFilter(); |
19 virtual ~TraceMessageFilter(); | 20 virtual ~TraceMessageFilter(); |
20 | 21 |
(...skipping 23 matching lines...) Expand all Loading... | |
44 | 45 |
45 // Awaiting ack for previously sent SendEndTracing | 46 // Awaiting ack for previously sent SendEndTracing |
46 bool is_awaiting_end_ack_; | 47 bool is_awaiting_end_ack_; |
47 bool is_awaiting_bpf_ack_; | 48 bool is_awaiting_bpf_ack_; |
48 | 49 |
49 DISALLOW_COPY_AND_ASSIGN(TraceMessageFilter); | 50 DISALLOW_COPY_AND_ASSIGN(TraceMessageFilter); |
50 }; | 51 }; |
51 | 52 |
52 #endif // CONTENT_BROWSER_TRACE_MESSAGE_FILTER_H_ | 53 #endif // CONTENT_BROWSER_TRACE_MESSAGE_FILTER_H_ |
53 | 54 |
OLD | NEW |