OLD | NEW |
---|---|
(Empty) | |
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. | |
4 | |
5 #ifndef CONTENT_BROWSER_TRACING_TRACING_DELEGATE_H_ | |
6 #define CONTENT_BROWSER_TRACING_TRACING_DELEGATE_H_ | |
7 | |
8 #include "base/memory/scoped_ptr.h" | |
9 | |
10 namespace net { | |
11 class URLRequestContextGetter; | |
12 } | |
13 | |
14 namespace content { | |
15 class TraceUploader; | |
16 | |
17 class TracingDelegate { | |
Charlie Reis
2015/02/12 17:11:32
Please add a class-level comment.
oystein (OOO til 10th of July)
2015/02/13 17:02:45
Done.
| |
18 public: | |
19 virtual ~TracingDelegate() {} | |
20 | |
21 virtual scoped_ptr<TraceUploader> GetTraceUploader( | |
Charlie Reis
2015/02/12 17:11:32
Please add a comment.
oystein (OOO til 10th of July)
2015/02/13 17:02:45
Done.
| |
22 net::URLRequestContextGetter* request_context) = 0; | |
23 }; | |
24 | |
25 } // namespace content | |
26 | |
27 #endif // CONTENT_BROWSER_TRACING_TRACING_DELEGATE_H_ | |
OLD | NEW |