#ifndef CONTENT_BROWSER_TRACING_TRACING_UI_H_
#define CONTENT_BROWSER_TRACING_TRACING_UI_H_
#include <stdint.h>
#include <map>
#include <string>
#include "base/memory/weak_ptr.h"
#include "content/common/content_export.h"
#include "content/public/browser/web_ui_controller.h"
#include "content/public/browser/webui_config.h"
#include "content/public/common/url_constants.h"
namespace base {
namespace trace_event {
class TraceConfig;
}
}
namespace content {
class TracingUI;
class TracingUIConfig : public DefaultWebUIConfig<TracingUI> { … };
class CONTENT_EXPORT TracingUI : public WebUIController { … };
}
#endif