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

Unified Diff: athena/extensions/chrome/app_list_controller_delegate_athena.cc

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/chrome/app_list_controller_delegate_athena.cc
diff --git a/athena/extensions/chrome/app_list_controller_delegate_athena.cc b/athena/extensions/chrome/app_list_controller_delegate_athena.cc
deleted file mode 100644
index a731c8b855c132e46d0c6dcd722065031ac7561f..0000000000000000000000000000000000000000
--- a/athena/extensions/chrome/app_list_controller_delegate_athena.cc
+++ /dev/null
@@ -1,114 +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/chrome/app_list_controller_delegate_athena.h"
-
-#include "athena/activity/public/activity_factory.h"
-#include "athena/extensions/public/extensions_delegate.h"
-#include "chrome/browser/profiles/profile.h"
-#include "extensions/common/extension.h"
-#include "ui/app_list/views/app_list_view.h"
-
-namespace athena {
-
-AppListControllerDelegateAthena::AppListControllerDelegateAthena() {
-}
-
-AppListControllerDelegateAthena::~AppListControllerDelegateAthena() {
-}
-
-void AppListControllerDelegateAthena::DismissView() {
-}
-
-gfx::NativeWindow AppListControllerDelegateAthena::GetAppListWindow() {
- NOTIMPLEMENTED();
- return nullptr;
-}
-
-gfx::Rect AppListControllerDelegateAthena::GetAppListBounds() {
- NOTIMPLEMENTED();
- return gfx::Rect();
-}
-
-gfx::ImageSkia AppListControllerDelegateAthena::GetWindowIcon() {
- return gfx::ImageSkia();
-}
-
-bool AppListControllerDelegateAthena::IsAppPinned(
- const std::string& extension_id) {
- return false;
-}
-
-void AppListControllerDelegateAthena::PinApp(const std::string& extension_id) {
- NOTREACHED();
-}
-
-void AppListControllerDelegateAthena::UnpinApp(
- const std::string& extension_id) {
- NOTREACHED();
-}
-
-AppListControllerDelegate::Pinnable
-AppListControllerDelegateAthena::GetPinnable() {
- return NO_PIN;
-}
-
-void AppListControllerDelegateAthena::OnShowChildDialog() {
- NOTIMPLEMENTED();
-}
-
-void AppListControllerDelegateAthena::OnCloseChildDialog() {
- NOTIMPLEMENTED();
-}
-
-bool AppListControllerDelegateAthena::CanDoCreateShortcutsFlow() {
- return false;
-}
-
-void AppListControllerDelegateAthena::DoCreateShortcutsFlow(
- Profile* profile,
- const std::string& extension_id) {
- NOTREACHED();
-}
-
-void AppListControllerDelegateAthena::CreateNewWindow(Profile* profile,
- bool incognito) {
- // Nothing needs to be done.
-}
-
-void AppListControllerDelegateAthena::OpenURL(
- Profile* profile,
- const GURL& url,
- ui::PageTransition transition,
- WindowOpenDisposition disposition) {
- ActivityFactory::Get()->CreateWebActivity(profile, base::string16(), url);
-}
-
-void AppListControllerDelegateAthena::ActivateApp(
- Profile* profile,
- const extensions::Extension* extension,
- AppListSource source,
- int event_flags) {
- LaunchApp(profile, extension, source, event_flags);
-}
-
-void AppListControllerDelegateAthena::LaunchApp(
- Profile* profile,
- const extensions::Extension* extension,
- AppListSource source,
- int event_flags) {
- ExtensionsDelegate::Get(profile)->LaunchApp(extension->id());
-}
-
-void AppListControllerDelegateAthena::ShowForProfileByPath(
- const base::FilePath& profile_path) {
- // Ash doesn't have profile switching.
- NOTREACHED();
-}
-
-bool AppListControllerDelegateAthena::ShouldShowUserIcon() {
- return false;
-}
-
-} // namespace athena
« no previous file with comments | « athena/extensions/chrome/app_list_controller_delegate_athena.h ('k') | athena/extensions/chrome/athena_chrome_app_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698