Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(444)

Unified Diff: athena/extensions/athena_apps_client_base.cc

Issue 583583008: Rename AppsClient -> AppWindowClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac & test Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: athena/extensions/athena_apps_client_base.cc
diff --git a/athena/extensions/athena_apps_client_base.cc b/athena/extensions/athena_apps_client_base.cc
deleted file mode 100644
index f2d1b4629f8a6e718deeebdb49997d1bb6a604f9..0000000000000000000000000000000000000000
--- a/athena/extensions/athena_apps_client_base.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2014 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.
-
-#include "athena/extensions/athena_apps_client_base.h"
-
-#include "athena/activity/public/activity_factory.h"
-#include "athena/activity/public/activity_manager.h"
-#include "athena/extensions/athena_native_app_window_views.h"
-#include "extensions/common/extension.h"
-
-namespace athena {
-
-AthenaAppsClientBase::AthenaAppsClientBase() {
-}
-
-AthenaAppsClientBase::~AthenaAppsClientBase() {
-}
-
-extensions::NativeAppWindow* AthenaAppsClientBase::CreateNativeAppWindow(
- extensions::AppWindow* app_window,
- const extensions::AppWindow::CreateParams& params) {
- AthenaNativeAppWindowViews* native_window = new AthenaNativeAppWindowViews;
- native_window->Init(app_window, params);
- Activity* app_activity = ActivityFactory::Get()->CreateAppActivity(
- app_window, native_window->GetWebView());
- ActivityManager::Get()->AddActivity(app_activity);
- return native_window;
-}
-
-void AthenaAppsClientBase::IncrementKeepAliveCount() {
- // No need to keep track of KeepAlive count on ChromeOS.
-}
-
-void AthenaAppsClientBase::DecrementKeepAliveCount() {
- // No need to keep track of KeepAlive count on ChromeOS.
-}
-
-} // namespace athena

Powered by Google App Engine
This is Rietveld 408576698