Chromium Code Reviews| 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 <string> | |
|
oystein (OOO til 10th of July)
2015/06/12 19:29:16
nit: remove, if no longer used?
shatch
2015/06/12 20:53:48
Done.
| |
| 9 | |
| 8 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 9 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 10 | 12 |
| 11 namespace base { | 13 namespace base { |
| 12 class Time; | 14 class Time; |
| 13 } | 15 } |
| 14 | 16 |
| 15 namespace net { | 17 namespace net { |
| 16 class URLRequestContextGetter; | 18 class URLRequestContextGetter; |
| 17 } | 19 } |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 36 bool requires_anonymized_data); | 38 bool requires_anonymized_data); |
| 37 | 39 |
| 38 virtual bool IsAllowedToEndBackgroundScenario( | 40 virtual bool IsAllowedToEndBackgroundScenario( |
| 39 const content::BackgroundTracingConfig& config, | 41 const content::BackgroundTracingConfig& config, |
| 40 bool requires_anonymized_data); | 42 bool requires_anonymized_data); |
| 41 }; | 43 }; |
| 42 | 44 |
| 43 } // namespace content | 45 } // namespace content |
| 44 | 46 |
| 45 #endif // CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ | 47 #endif // CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_ |
| OLD | NEW |