summaryrefslogtreecommitdiffstats
path: root/chrome/browser/platform_util_aura.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-27 12:05:29 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-27 12:05:29 +0000
commit0477e8e68f2e3e28ca6c19a6edfb3e746b6df82d (patch)
tree58dec49248621dfa006b893f26466c574b44bfda /chrome/browser/platform_util_aura.cc
parent7df1dadbe3d3ccc97bc57ff35a2c1e9764ccc83c (diff)
downloadchromium_src-0477e8e68f2e3e28ca6c19a6edfb3e746b6df82d.zip
chromium_src-0477e8e68f2e3e28ca6c19a6edfb3e746b6df82d.tar.gz
chromium_src-0477e8e68f2e3e28ca6c19a6edfb3e746b6df82d.tar.bz2
ash: Start moving window_util.h functions into wm namespace.
BUG=115846 R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/9455085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123730 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/platform_util_aura.cc')
-rw-r--r--chrome/browser/platform_util_aura.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/platform_util_aura.cc b/chrome/browser/platform_util_aura.cc
index d2cb2bf..0bafa3a 100644
--- a/chrome/browser/platform_util_aura.cc
+++ b/chrome/browser/platform_util_aura.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -19,11 +19,11 @@ gfx::NativeView GetParent(gfx::NativeView view) {
}
bool IsWindowActive(gfx::NativeWindow window) {
- return ash::IsActiveWindow(window);
+ return ash::wm::IsActiveWindow(window);
}
void ActivateWindow(gfx::NativeWindow window) {
- ash::ActivateWindow(window);
+ ash::wm::ActivateWindow(window);
}
bool IsVisible(gfx::NativeView view) {