blob: 74464c417826f62534e9b746b361ae12b8c5ef9a [file] [log] [blame]
// Copyright 2012 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_UI_ASH_SHELL_INIT_ASH_SHELL_INIT_H_
#define CHROME_BROWSER_UI_ASH_SHELL_INIT_ASH_SHELL_INIT_H_
class PrefService;
// Initializes and destroys the ash::Shell when Ash is running in process.
class AshShellInit {
public:
explicit AshShellInit(PrefService& local_state);
AshShellInit(const AshShellInit&) = delete;
AshShellInit& operator=(const AshShellInit&) = delete;
~AshShellInit();
};
#endif // CHROME_BROWSER_UI_ASH_SHELL_INIT_ASH_SHELL_INIT_H_