#ifndef CONTENT_BROWSER_PROCESS_INTERNALS_PROCESS_INTERNALS_UI_H_
#define CONTENT_BROWSER_PROCESS_INTERNALS_PROCESS_INTERNALS_UI_H_
#include <memory>
#include <utility>
#include "content/browser/process_internals/process_internals.mojom.h"
#include "content/common/frame.mojom.h"
#include "content/public/browser/web_ui_controller.h"
#include "content/public/browser/webui_config.h"
#include "content/public/common/url_constants.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
namespace content {
class ProcessInternalsUI;
class ProcessInternalsUIConfig : public DefaultWebUIConfig<ProcessInternalsUI> { … };
class ProcessInternalsUI : public WebUIController { … };
}
#endif