Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / mandoline / ui / aura / aura_init.h
blob11388a63f730eeaf570cdbef73be243bf410a5da
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MANDOLINE_UI_AURA_AURA_INIT_H_
6 #define MANDOLINE_UI_AURA_AURA_INIT_H_
8 #include "ui/mojo/init/ui_init.h"
10 namespace mojo {
11 class Shell;
12 class View;
15 namespace mandoline {
17 // Sets up necessary state for aura when run with the viewmanager.
18 class AuraInit {
19 public:
20 AuraInit(mojo::View* root, mojo::Shell* shell);
21 ~AuraInit();
23 private:
24 void InitializeResources(mojo::Shell* shell);
26 ui::mojo::UIInit ui_init_;
28 DISALLOW_COPY_AND_ASSIGN(AuraInit);
31 } // namespace mandoline
33 #endif // MANDOLINE_UI_AURA_AURA_INIT_H_