summaryrefslogtreecommitdiff
path: root/chromium/components/keep_alive_registry/scoped_keep_alive.cc
blob: 325a4ca336dae2ebd7b01948e36a8679be7b8627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/keep_alive_registry/scoped_keep_alive.h"

#include "components/keep_alive_registry/keep_alive_registry.h"
#include "components/keep_alive_registry/keep_alive_types.h"

ScopedKeepAlive::ScopedKeepAlive(KeepAliveOrigin origin,
                                 KeepAliveRestartOption restart)
    : origin_(origin), restart_(restart) {
  KeepAliveRegistry::GetInstance()->Register(origin_, restart_);
}

ScopedKeepAlive::~ScopedKeepAlive() {
  KeepAliveRegistry::GetInstance()->Unregister(origin_, restart_);
}