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

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

Issue 8588023: Collect profiler stats from browser child processes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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
« no previous file with comments | « content/browser/profiler_controller_impl.cc ('k') | content/browser/profiler_message_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
7
8 #include <string>
9
10 #include "content/browser/browser_message_filter.h"
11
12 namespace base {
13 class DictionaryValue;
14 }
15
16 // This class sends and receives profiler messages in the browser process.
17 class ProfilerMessageFilter : public BrowserMessageFilter {
18 public:
19 ProfilerMessageFilter();
20 virtual ~ProfilerMessageFilter();
21
22 // BrowserMessageFilter implementation.
23 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
24
25 // BrowserMessageFilter implementation.
26 virtual bool OnMessageReceived(const IPC::Message& message,
27 bool* message_was_ok) OVERRIDE;
28
29 private:
30 // Message handlers.
31 void OnChildProfilerData(int sequence_number,
32 const base::DictionaryValue& profiler_data);
33
34 DISALLOW_COPY_AND_ASSIGN(ProfilerMessageFilter);
35 };
36
37 #endif // CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
38
OLDNEW
« no previous file with comments | « content/browser/profiler_controller_impl.cc ('k') | content/browser/profiler_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698