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

Unified Diff: athena/main/athena_app_window_controller.cc

Issue 554623002: Remove unused class ShellAppWindowController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « athena/main/athena_app_window_controller.h ('k') | extensions/shell/app_shell.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/main/athena_app_window_controller.cc
diff --git a/athena/main/athena_app_window_controller.cc b/athena/main/athena_app_window_controller.cc
deleted file mode 100644
index 5e01798833d790cc3d2a6b7c1805546e0bdbbff6..0000000000000000000000000000000000000000
--- a/athena/main/athena_app_window_controller.cc
+++ /dev/null
@@ -1,35 +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/main/athena_app_window_controller.h"
-
-#include "athena/activity/public/activity_factory.h"
-#include "athena/activity/public/activity_manager.h"
-#include "base/memory/scoped_ptr.h"
-#include "content/public/browser/web_contents_observer.h"
-#include "extensions/shell/browser/shell_app_window.h"
-
-namespace athena {
-
-AthenaAppWindowController::AthenaAppWindowController() {
-}
-
-AthenaAppWindowController::~AthenaAppWindowController() {
-}
-
-extensions::ShellAppWindow* AthenaAppWindowController::CreateAppWindow(
- content::BrowserContext* context,
- const extensions::Extension* extension) {
- extensions::ShellAppWindow* app_window = new extensions::ShellAppWindow();
- app_window->Init(context, extension, gfx::Size(100, 100));
- ActivityManager::Get()->AddActivity(ActivityFactory::Get()->CreateAppActivity(
- app_window));
- return app_window;
-}
-
-void AthenaAppWindowController::CloseAppWindows() {
- // Do nothing.
-}
-
-} // namespace athena
« no previous file with comments | « athena/main/athena_app_window_controller.h ('k') | extensions/shell/app_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698