diff options
Diffstat (limited to 'ash/wm/property_util.cc')
-rw-r--r-- | ash/wm/property_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ash/wm/property_util.cc b/ash/wm/property_util.cc index d52b196..6352797 100644 --- a/ash/wm/property_util.cc +++ b/ash/wm/property_util.cc @@ -48,7 +48,7 @@ void SetTrackedByWorkspace(aura::Window* window, bool value) { window->SetProperty(internal::kWindowTrackedByWorkspaceKey, value); } -bool GetTrackedByWorkspace(aura::Window* window) { +bool GetTrackedByWorkspace(const aura::Window* window) { return window->GetProperty(internal::kWindowTrackedByWorkspaceKey); } @@ -56,7 +56,7 @@ void SetIgnoredByShelf(aura::Window* window, bool value) { window->SetProperty(internal::kIgnoredByShelfKey, value); } -bool GetIgnoredByShelf(aura::Window* window) { +bool GetIgnoredByShelf(const aura::Window* window) { return window->GetProperty(internal::kIgnoredByShelfKey); } |