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

Side by Side Diff: content/browser/trace_message_filter.h

Issue 9333003: Use FILE thread for disk operations in TraceSubscriberStdio (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698