Index: chrome/browser/ui/views/aura/chrome_shell_delegate.h |
diff --git a/chrome/browser/ui/views/aura/chrome_shell_delegate.h b/chrome/browser/ui/views/aura/chrome_shell_delegate.h |
deleted file mode 100644 |
index 2bd6c3dcb72b15c9817cb6ee956647823c1015d8..0000000000000000000000000000000000000000 |
--- a/chrome/browser/ui/views/aura/chrome_shell_delegate.h |
+++ /dev/null |
@@ -1,62 +0,0 @@ |
-// Copyright (c) 2012 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. |
- |
-#ifndef CHROME_BROWSER_UI_VIEWS_AURA_CHROME_SHELL_DELEGATE_H_ |
-#define CHROME_BROWSER_UI_VIEWS_AURA_CHROME_SHELL_DELEGATE_H_ |
-#pragma once |
- |
-#include "ash/launcher/launcher_types.h" |
-#include "ash/shell_delegate.h" |
-#include "base/basictypes.h" |
-#include "base/compiler_specific.h" |
-#include "base/memory/scoped_ptr.h" |
- |
-class StatusAreaHostAura; |
-class StatusAreaView; |
- |
-namespace views { |
-class View; |
-} |
- |
-class ChromeShellDelegate : public ash::ShellDelegate { |
- public: |
- ChromeShellDelegate(); |
- virtual ~ChromeShellDelegate(); |
- |
- static ChromeShellDelegate* instance() { return instance_; } |
- |
- StatusAreaHostAura* status_area_host() { |
- return status_area_host_.get(); |
- } |
- |
- StatusAreaView* GetStatusArea(); |
- |
- // ash::ShellDelegate overrides; |
- virtual views::Widget* CreateStatusArea() OVERRIDE; |
-#if defined(OS_CHROMEOS) |
- virtual void LockScreen() OVERRIDE; |
-#endif |
- virtual void Exit() OVERRIDE; |
- virtual ash::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; |
- virtual std::vector<aura::Window*> GetCycleWindowList( |
- CycleSource source, |
- CycleOrder order) const OVERRIDE; |
- virtual void StartPartialScreenshot( |
- ash::ScreenshotDelegate* screenshot_delegate) OVERRIDE; |
- virtual ash::LauncherDelegate* CreateLauncherDelegate( |
- ash::LauncherModel* model) OVERRIDE; |
- virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate( |
- ash::SystemTray* tray) OVERRIDE; |
- virtual bool GetOverrideWindowMode( |
- ash::Shell::WindowMode* window_mode) OVERRIDE; |
- |
- private: |
- static ChromeShellDelegate* instance_; |
- |
- scoped_ptr<StatusAreaHostAura> status_area_host_; |
- |
- DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); |
-}; |
- |
-#endif // CHROME_BROWSER_UI_VIEWS_AURA_CHROME_SHELL_DELEGATE_H_ |