chromium/chrome/browser/extensions/install_gate.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_EXTENSIONS_INSTALL_GATE_H_
#define CHROME_BROWSER_EXTENSIONS_INSTALL_GATE_H_

namespace extensions {

class Extension;

// An interface that ExtensionService inquires for whether extension installs
// should be delayed and whether to finish/abort delayed installs.
class InstallGate {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_INSTALL_GATE_H_