OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ |
6 #define CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class DictionaryValue; | 15 class DictionaryValue; |
16 class Time; | |
17 } | 16 } |
18 | 17 |
19 namespace net { | 18 namespace net { |
20 class URLRequestContextGetter; | 19 class URLRequestContextGetter; |
21 } | 20 } |
22 | 21 |
23 namespace content { | 22 namespace content { |
24 class BackgroundTracingConfig; | 23 class BackgroundTracingConfig; |
25 class TraceUploader; | 24 class TraceUploader; |
26 | 25 |
(...skipping 21 matching lines...) Expand all Loading... |
48 | 47 |
49 // Used to add any additional metadata to traces. | 48 // Used to add any additional metadata to traces. |
50 virtual void GenerateMetadataDict(base::DictionaryValue* metadata_dict) {} | 49 virtual void GenerateMetadataDict(base::DictionaryValue* metadata_dict) {} |
51 | 50 |
52 virtual MetadataFilterPredicate GetMetadataFilterPredicate(); | 51 virtual MetadataFilterPredicate GetMetadataFilterPredicate(); |
53 }; | 52 }; |
54 | 53 |
55 } // namespace content | 54 } // namespace content |
56 | 55 |
57 #endif // CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ | 56 #endif // CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ |
OLD | NEW |