Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: mandoline/ui/aura/aura_init.h

Issue 1123643007: Restore aura support from Mojo repo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mandoline/ui/aura/DEPS ('k') | mandoline/ui/aura/aura_init.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/ui/aura/aura_init.h
diff --git a/mandoline/ui/aura/aura_init.h b/mandoline/ui/aura/aura_init.h
new file mode 100644
index 0000000000000000000000000000000000000000..abe833fa6ade244c95f753d63b756449461be5ba
--- /dev/null
+++ b/mandoline/ui/aura/aura_init.h
@@ -0,0 +1,28 @@
+// Copyright 2015 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 MANDOLINE_UI_AURA_AURA_INIT_H_
+#define MANDOLINE_UI_AURA_AURA_INIT_H_
+
+#include "base/memory/scoped_ptr.h"
+
+namespace mandoline {
+
+class ScreenMojo;
+
+// Sets up necessary state for aura when run with the viewmanager.
+class AuraInit {
+ public:
+ AuraInit();
+ ~AuraInit();
+
+ private:
+ scoped_ptr<ScreenMojo> screen_;
+
+ DISALLOW_COPY_AND_ASSIGN(AuraInit);
+};
+
+} // namespace mandoline
+
+#endif // MANDOLINE_UI_AURA_AURA_INIT_H_
« no previous file with comments | « mandoline/ui/aura/DEPS ('k') | mandoline/ui/aura/aura_init.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698