| Index: athena/extensions/athena_app_window_client_base.cc
|
| diff --git a/athena/extensions/athena_apps_client_base.cc b/athena/extensions/athena_app_window_client_base.cc
|
| similarity index 72%
|
| rename from athena/extensions/athena_apps_client_base.cc
|
| rename to athena/extensions/athena_app_window_client_base.cc
|
| index f2d1b4629f8a6e718deeebdb49997d1bb6a604f9..00e08c95ea9081d9013eebf3f4e3fcee40b70729 100644
|
| --- a/athena/extensions/athena_apps_client_base.cc
|
| +++ b/athena/extensions/athena_app_window_client_base.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "athena/extensions/athena_apps_client_base.h"
|
| +#include "athena/extensions/athena_app_window_client_base.h"
|
|
|
| #include "athena/activity/public/activity_factory.h"
|
| #include "athena/activity/public/activity_manager.h"
|
| @@ -11,13 +11,13 @@
|
|
|
| namespace athena {
|
|
|
| -AthenaAppsClientBase::AthenaAppsClientBase() {
|
| +AthenaAppWindowClientBase::AthenaAppWindowClientBase() {
|
| }
|
|
|
| -AthenaAppsClientBase::~AthenaAppsClientBase() {
|
| +AthenaAppWindowClientBase::~AthenaAppWindowClientBase() {
|
| }
|
|
|
| -extensions::NativeAppWindow* AthenaAppsClientBase::CreateNativeAppWindow(
|
| +extensions::NativeAppWindow* AthenaAppWindowClientBase::CreateNativeAppWindow(
|
| extensions::AppWindow* app_window,
|
| const extensions::AppWindow::CreateParams& params) {
|
| AthenaNativeAppWindowViews* native_window = new AthenaNativeAppWindowViews;
|
| @@ -28,11 +28,11 @@ extensions::NativeAppWindow* AthenaAppsClientBase::CreateNativeAppWindow(
|
| return native_window;
|
| }
|
|
|
| -void AthenaAppsClientBase::IncrementKeepAliveCount() {
|
| +void AthenaAppWindowClientBase::IncrementKeepAliveCount() {
|
| // No need to keep track of KeepAlive count on ChromeOS.
|
| }
|
|
|
| -void AthenaAppsClientBase::DecrementKeepAliveCount() {
|
| +void AthenaAppWindowClientBase::DecrementKeepAliveCount() {
|
| // No need to keep track of KeepAlive count on ChromeOS.
|
| }
|
|
|
|
|