| Index: content/browser/profiler_message_filter.h
|
| diff --git a/content/browser/profiler_message_filter.h b/content/browser/profiler_message_filter.h
|
| index df4ce53e0617f3758c76ffad2bd42f0f05f4dd85..875e45d0aa6c3d8a603b4f1816d83f822b34096a 100644
|
| --- a/content/browser/profiler_message_filter.h
|
| +++ b/content/browser/profiler_message_filter.h
|
| @@ -8,6 +8,7 @@
|
| #include <string>
|
|
|
| #include "content/public/browser/browser_message_filter.h"
|
| +#include "content/public/common/process_type.h"
|
|
|
| namespace tracked_objects {
|
| struct ProcessDataSnapshot;
|
| @@ -18,7 +19,7 @@ namespace content {
|
| // This class sends and receives profiler messages in the browser process.
|
| class ProfilerMessageFilter : public BrowserMessageFilter {
|
| public:
|
| - explicit ProfilerMessageFilter(int process_type);
|
| + explicit ProfilerMessageFilter(content::ProcessType process_type);
|
|
|
| // BrowserMessageFilter implementation.
|
| void OnChannelConnected(int32 peer_pid) override;
|
| @@ -39,7 +40,7 @@ class ProfilerMessageFilter : public BrowserMessageFilter {
|
| void OnTcmallocStats(const std::string& output);
|
| #endif
|
|
|
| - int process_type_;
|
| + content::ProcessType process_type_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ProfilerMessageFilter);
|
| };
|
|
|