| Index: content/browser/tracing/tracing_ui.h
|
| diff --git a/content/browser/tracing/tracing_ui.h b/content/browser/tracing/tracing_ui.h
|
| index c09db951e43ecb65fbd95d0546b5c4b5f375000a..db7b594720ecb1340c8d23d62a0d9fd0aef8c44c 100644
|
| --- a/content/browser/tracing/tracing_ui.h
|
| +++ b/content/browser/tracing/tracing_ui.h
|
| @@ -9,11 +9,11 @@
|
| #include <string>
|
|
|
| #include "base/memory/weak_ptr.h"
|
| +#include "content/public/browser/trace_uploader.h"
|
| #include "content/public/browser/web_ui_controller.h"
|
|
|
| namespace content {
|
|
|
| -class TraceUploader;
|
| class TracingDelegate;
|
|
|
| // The C++ back-end for the chrome://tracing webui page.
|
| @@ -26,7 +26,8 @@ class CONTENT_EXPORT TracingUI : public WebUIController {
|
| void OnTraceUploadComplete(bool success, const std::string& feedback);
|
|
|
| private:
|
| - void DoUploadInternal(const std::string& file_contents);
|
| + void DoUploadInternal(const std::string& file_contents,
|
| + TraceUploader::UploadMode upload_mode);
|
| void DoUpload(const base::ListValue* args);
|
| void DoUploadBase64Encoded(const base::ListValue* args);
|
|
|
|
|