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

Unified Diff: ash/mus/window_properties.h

Issue 2539363005: Converts ash to use aura-mus (Closed)
Patch Set: merge Created 4 years 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
Index: ash/mus/window_properties.h
diff --git a/ash/mus/window_properties.h b/ash/mus/window_properties.h
new file mode 100644
index 0000000000000000000000000000000000000000..9ec3398af2d44ab43fa38cfdfda72b8d1e13d328
--- /dev/null
+++ b/ash/mus/window_properties.h
@@ -0,0 +1,23 @@
+// Copyright 2016 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_MUS_WINDOW_PROPERTIES_H_
+#define ASH_MUS_WINDOW_PROPERTIES_H_
+
+#include "ui/aura/aura_export.h"
+#include "ui/aura/window.h"
+
+namespace ash {
+namespace mus {
+
+// Maps to ui::mojom::WindowManager::kRendererParentTitleArea_Property.
+AURA_EXPORT extern const aura::WindowProperty<bool>* const
James Cook 2016/12/05 19:21:45 ASH_EXPORT?
sky 2016/12/05 21:39:20 Actually, no export is needed. Removed.
+ kRenderTitleAreaProperty;
+
+AURA_EXPORT extern const aura::WindowProperty<bool>* const kWindowIsJanky;
James Cook 2016/12/05 19:21:45 nit: Document or point to mojo property it maps to
sky 2016/12/05 21:39:20 Done.
+
+} // namespace mus
+} // namespace ash
+
+#endif // ASH_MUS_WINDOW_PROPERTIES_H_

Powered by Google App Engine
This is Rietveld 408576698