Re-subimission of https://codereview.chromium.org/1041213003/
[chromium-blink-merge.git] / content / public / browser / tracing_delegate.h
blob5fab907c1022e8cfecbcddc1029357abf15f92d7
1 // Copyright 2015 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_PUBLIC_BROWSER_TRACING_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_
8 #include "base/memory/scoped_ptr.h"
10 namespace net {
11 class URLRequestContextGetter;
14 namespace content {
15 class TraceUploader;
17 // This can be implemented by the embedder to provide functionality for the
18 // about://tracing WebUI.
19 class TracingDelegate {
20 public:
21 virtual ~TracingDelegate() {}
23 // Provide trace uploading functionality; see trace_uploader.h.
24 virtual scoped_ptr<TraceUploader> GetTraceUploader(
25 net::URLRequestContextGetter* request_context) = 0;
28 } // namespace content
30 #endif // CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_