summaryrefslogtreecommitdiffstats
path: root/athena/content
diff options
context:
space:
mode:
Diffstat (limited to 'athena/content')
-rw-r--r--athena/content/app_activity.cc2
-rw-r--r--athena/content/app_activity_proxy.cc2
-rw-r--r--athena/content/app_activity_registry.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/athena/content/app_activity.cc b/athena/content/app_activity.cc
index da5f929..4315df3 100644
--- a/athena/content/app_activity.cc
+++ b/athena/content/app_activity.cc
@@ -103,7 +103,7 @@ void AppActivity::Init() {
// Note: At this time the |AppActivity| did not get registered to the
// |ResourceManager| - so we can move it around if needed.
WindowListProvider* window_list_provider =
- WindowManager::GetInstance()->GetWindowListProvider();
+ WindowManager::Get()->GetWindowListProvider();
window_list_provider->StackWindowFrontOf(app_proxy->GetWindow(),
GetWindow());
Activity::Delete(app_proxy);
diff --git a/athena/content/app_activity_proxy.cc b/athena/content/app_activity_proxy.cc
index 60822d3..e4efd89 100644
--- a/athena/content/app_activity_proxy.cc
+++ b/athena/content/app_activity_proxy.cc
@@ -62,7 +62,7 @@ void AppActivityProxy::Init() {
// Get the content proxy to present the content.
content_proxy_ = replaced_activity_->GetContentProxy(GetWindow());
WindowListProvider* window_list_provider =
- WindowManager::GetInstance()->GetWindowListProvider();
+ WindowManager::Get()->GetWindowListProvider();
window_list_provider->StackWindowBehindTo(GetWindow(),
replaced_activity_->GetWindow());
// Creating this object was moving the activation to this window which should
diff --git a/athena/content/app_activity_registry.cc b/athena/content/app_activity_registry.cc
index 70c1f3b..9981437 100644
--- a/athena/content/app_activity_registry.cc
+++ b/athena/content/app_activity_registry.cc
@@ -119,7 +119,7 @@ void AppActivityRegistry::DelayedUnload() {
AppActivity* AppActivityRegistry::GetMruActivity() {
DCHECK(activity_list_.size());
WindowListProvider* window_list_provider =
- WindowManager::GetInstance()->GetWindowListProvider();
+ WindowManager::Get()->GetWindowListProvider();
const aura::Window::Windows& children =
window_list_provider->GetWindowList();
// Find the first window in the container which is part of the application.