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

Unified Diff: ui/aura_shell/shell.h

Issue 8747022: Aura: Tooltips (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed usage of window delegate. 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
Index: ui/aura_shell/shell.h
diff --git a/ui/aura_shell/shell.h b/ui/aura_shell/shell.h
index 228c00f430d1a5510aa0af9f5edc1be4927997a5..53a3c3b48b01a96330f498fed1f0b8e183908f2c 100644
--- a/ui/aura_shell/shell.h
+++ b/ui/aura_shell/shell.h
@@ -29,6 +29,7 @@ namespace aura_shell {
class Launcher;
class ShellAcceleratorController;
class ShellDelegate;
+class ShellTooltipManager;
namespace internal {
class AppList;
@@ -72,6 +73,10 @@ class AURA_SHELL_EXPORT Shell {
return accelerator_controller_.get();
}
+ ShellTooltipManager* tooltip_manager() {
+ return tooltip_manager_.get();
+ }
+
ShellDelegate* delegate() { return delegate_.get(); }
Launcher* launcher() { return launcher_.get(); }
@@ -113,6 +118,8 @@ class AURA_SHELL_EXPORT Shell {
// An event filter that pre-handles global accelerators.
scoped_ptr<internal::ShellAcceleratorFilter> accelerator_filter_;
+ scoped_ptr<ShellTooltipManager> tooltip_manager_;
+
DISALLOW_COPY_AND_ASSIGN(Shell);
};

Powered by Google App Engine
This is Rietveld 408576698