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 |