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

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

Issue 985773002: Introducing phased profiling framework (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@write_to_file
Patch Set: Fixing Android compile errors. Created 5 years, 8 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
« 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')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PROFILER_MESSAGE_FILTER_H_ 5 #ifndef CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_ 6 #define CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "content/public/browser/browser_message_filter.h" 10 #include "content/public/browser/browser_message_filter.h"
11 #include "content/public/common/process_type.h"
11 12
12 namespace tracked_objects { 13 namespace tracked_objects {
13 struct ProcessDataSnapshot; 14 struct ProcessDataSnapshot;
14 } 15 }
15 16
16 namespace content { 17 namespace content {
17 18
18 // This class sends and receives profiler messages in the browser process. 19 // This class sends and receives profiler messages in the browser process.
19 class ProfilerMessageFilter : public BrowserMessageFilter { 20 class ProfilerMessageFilter : public BrowserMessageFilter {
20 public: 21 public:
21 explicit ProfilerMessageFilter(int process_type); 22 explicit ProfilerMessageFilter(content::ProcessType process_type);
22 23
23 // BrowserMessageFilter implementation. 24 // BrowserMessageFilter implementation.
24 void OnChannelConnected(int32 peer_pid) override; 25 void OnChannelConnected(int32 peer_pid) override;
25 26
26 // BrowserMessageFilter implementation. 27 // BrowserMessageFilter implementation.
27 bool OnMessageReceived(const IPC::Message& message) override; 28 bool OnMessageReceived(const IPC::Message& message) override;
28 29
29 protected: 30 protected:
30 ~ProfilerMessageFilter() override; 31 ~ProfilerMessageFilter() override;
31 32
32 private: 33 private:
33 // Message handlers. 34 // Message handlers.
34 void OnChildProfilerData( 35 void OnChildProfilerData(
35 int sequence_number, 36 int sequence_number,
36 const tracked_objects::ProcessDataSnapshot& profiler_data); 37 const tracked_objects::ProcessDataSnapshot& profiler_data);
37 38
38 #if defined(USE_TCMALLOC) 39 #if defined(USE_TCMALLOC)
39 void OnTcmallocStats(const std::string& output); 40 void OnTcmallocStats(const std::string& output);
40 #endif 41 #endif
41 42
42 int process_type_; 43 content::ProcessType process_type_;
43 44
44 DISALLOW_COPY_AND_ASSIGN(ProfilerMessageFilter); 45 DISALLOW_COPY_AND_ASSIGN(ProfilerMessageFilter);
45 }; 46 };
46 47
47 } // namespace content 48 } // namespace content
48 49
49 #endif // CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_ 50 #endif // CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
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