sandbox/linux/bpf_dsl: eliminate implicit dependency on C++ compiler behavior
[chromium-blink-merge.git] / content / browser / profiler_message_filter.h
blob875e45d0aa6c3d8a603b4f1816d83f822b34096a
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
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_
8 #include <string>
10 #include "content/public/browser/browser_message_filter.h"
11 #include "content/public/common/process_type.h"
13 namespace tracked_objects {
14 struct ProcessDataSnapshot;
17 namespace content {
19 // This class sends and receives profiler messages in the browser process.
20 class ProfilerMessageFilter : public BrowserMessageFilter {
21 public:
22 explicit ProfilerMessageFilter(content::ProcessType process_type);
24 // BrowserMessageFilter implementation.
25 void OnChannelConnected(int32 peer_pid) override;
27 // BrowserMessageFilter implementation.
28 bool OnMessageReceived(const IPC::Message& message) override;
30 protected:
31 ~ProfilerMessageFilter() override;
33 private:
34 // Message handlers.
35 void OnChildProfilerData(
36 int sequence_number,
37 const tracked_objects::ProcessDataSnapshot& profiler_data);
39 #if defined(USE_TCMALLOC)
40 void OnTcmallocStats(const std::string& output);
41 #endif
43 content::ProcessType process_type_;
45 DISALLOW_COPY_AND_ASSIGN(ProfilerMessageFilter);
48 } // namespace content
50 #endif // CONTENT_BROWSER_PROFILER_MESSAGE_FILTER_H_