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

Unified Diff: ui/aura/window_port.cc

Issue 2446893005: Adds a porting layer so aura can be made to work with mus (Closed)
Patch Set: better Created 4 years, 2 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 | « ui/aura/window_port.h ('k') | ui/aura/window_port_local.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/window_port.cc
diff --git a/ui/aura/window_port.cc b/ui/aura/window_port.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c774fbcd453d9e4204bbe78a9a24713ad35ad68a
--- /dev/null
+++ b/ui/aura/window_port.cc
@@ -0,0 +1,22 @@
+// 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.
+
+#include "ui/aura/window_port.h"
+
+#include "ui/aura/window.h"
+
+namespace aura {
+
+// static
+WindowPort* WindowPort::Get(Window* window) {
+ return window ? window->port_ : nullptr;
+}
+
+// static
+base::ObserverList<WindowObserver, true>* WindowPort::GetObservers(
+ Window* window) {
+ return &(window->observers_);
+}
+
+} // namespace aura
« no previous file with comments | « ui/aura/window_port.h ('k') | ui/aura/window_port_local.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698