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

Unified Diff: chrome/browser/ui/views/aura/chrome_shell_delegate.h

Issue 9570044: Rename chrome/browser/ui/views/{aura => ash}/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 10 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: 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_
« no previous file with comments | « chrome/browser/ui/views/aura/caps_lock_handler_browsertest.cc ('k') | chrome/browser/ui/views/aura/chrome_shell_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698