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

Unified Diff: ui/aura_shell/shell.h

Issue 8555025: aura: Draw drop shadows under browsers and menus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor changes Created 9 years, 1 month 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 | « ui/aura_shell/shadow_controller_unittest.cc ('k') | ui/aura_shell/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura_shell/shell.h
diff --git a/ui/aura_shell/shell.h b/ui/aura_shell/shell.h
index fd0d59628b38c01b6983f9aa1b9fa60ee18da5bc..3f4e3ac8311ce1f78d26d82c0fba8dc1f96635cc 100644
--- a/ui/aura_shell/shell.h
+++ b/ui/aura_shell/shell.h
@@ -31,6 +31,7 @@ class ShellDelegate;
namespace internal {
class DragDropController;
+class ShadowController;
class ShelfLayoutController;
class WorkspaceController;
}
@@ -64,6 +65,11 @@ class AURA_SHELL_EXPORT Shell {
ShellDelegate* delegate() { return delegate_.get(); }
Launcher* launcher() { return launcher_.get(); }
+ // Made available for tests.
+ internal::ShadowController* shadow_controller() {
+ return shadow_controller_.get();
+ }
+
private:
typedef std::pair<aura::Window*, gfx::Rect> WindowAndBoundsPair;
@@ -88,6 +94,7 @@ class AURA_SHELL_EXPORT Shell {
scoped_ptr<internal::DragDropController> drag_drop_controller_;
scoped_ptr<internal::WorkspaceController> workspace_controller_;
scoped_ptr<internal::ShelfLayoutController> shelf_layout_controller_;
+ scoped_ptr<internal::ShadowController> shadow_controller_;
DISALLOW_COPY_AND_ASSIGN(Shell);
};
« no previous file with comments | « ui/aura_shell/shadow_controller_unittest.cc ('k') | ui/aura_shell/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698