blob: fffc7b5bee4a783eeb496fad836697ae4eff04dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Generated with https://crrev.com/c/2220116 and:
// python3 tools/state_transitions/state_graph.py content/browser/frame_host/render_frame_host_impl.cc LifecycleState
//
// See tools/state_transitions/README.md
digraph createflow {
kSpeculative -> {kActive, kReadyToBeDeleted};
kActive -> {kInBackForwardCache, kRunningUnloadHandlers, kReadyToBeDeleted};
kInBackForwardCache -> {kActive, kReadyToBeDeleted};
kRunningUnloadHandlers -> {kReadyToBeDeleted};
kReadyToBeDeleted -> {};
}
|