blob: 46833ecf448b97cf02ad213a7d7d033fdde1e820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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 ASH_SHELL_SHELL_MAIN_PARTS_H_
#define ASH_SHELL_SHELL_MAIN_PARTS_H_
#pragma once
namespace ash {
namespace shell {
// Platform initializations prior to the start of the main message loop.
void PreMainMessageLoopStart();
} // namespace shell
} // namespace ash
#endif // ASH_SHELL_SHELL_MAIN_PARTS_H_
|