// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/platform_util.h" #include "base/check.h" #include "ui/aura/window.h" #include "ui/wm/core/window_util.h" namespace platform_util { gfx::NativeWindow GetTopLevel(gfx::NativeView view) { … } gfx::NativeView GetViewForWindow(gfx::NativeWindow window) { … } gfx::NativeView GetParent(gfx::NativeView view) { … } bool IsWindowActive(gfx::NativeWindow window) { … } void ActivateWindow(gfx::NativeWindow window) { … } bool IsVisible(gfx::NativeView view) { … } } // namespace platform_util