| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
+avi@ for chrome/
+dtapuska@ for content/
+ntfschr@ for android_webview/
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
background_tracing_manager_ = std::make_unique<BackgroundTracingManagerImpl>(Why wouldn't we use CreateBackgroundTracingManager here? Do we actually need something from the Impl definition?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
background_tracing_manager_ = std::make_unique<BackgroundTracingManagerImpl>(Why wouldn't we use CreateBackgroundTracingManager here? Do we actually need something from the Impl definition?
Good point, done.
The only reason I hadn't done this is that I added CreateBackgroundTracingManager later on when I realized it was needed outside of content/
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
components/performance_manager/graph/process_node_impl.h lgtm
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
18 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: content/browser/browser_main_loop.cc
Insertions: 1, Deletions: 0.
@@ -149,6 +149,7 @@
#include "services/network/public/cpp/network_switches.h"
#include "services/network/public/mojom/network_service.mojom.h"
#include "services/network/transitional_url_loader_factory_owner.h"
+#include "services/tracing/public/cpp/background_tracing/background_tracing_manager.h"
#include "services/tracing/public/cpp/startup_tracing_controller.h"
#include "services/tracing/public/cpp/trace_startup_config.h"
#include "services/video_capture/public/cpp/features.h"
```
[tracing] Move BackgroundTracingManager to services
This CL moves BackgroundTracingManager from content/ to services/ so
that it can be reused for iOS without content/. This extracts part of
BackgroundTracingManager that are content specific, and keeps it in a
derived content::BackgroundTracingManagerImpl.
I tried to make it as mechanical as possible. Gerrit doesn't recognize
services/tracing/public/cpp/background_tracing/background_tracing_manager.h/.cc
as moved, so here's the manual diff:
background_tracing_manager_impl.h.diff
https://paste.googleplex.com/6256732864118784
background_tracing_manager_impl.cc.diff
https://paste.googleplex.com/4528916879507456
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |