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