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

Unified Diff: ash/launcher/launcher.cc

Issue 9808026: Layout panels on top of their launcher icons (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ununsed constanrs removed Created 8 years, 9 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: ash/launcher/launcher.cc
diff --git a/ash/launcher/launcher.cc b/ash/launcher/launcher.cc
index 51b2c58c685e2555a3f5c9b646935f5df826950b..9659f64fb8bba6e83dc45cac3cd74f2b0d0d2e7d 100644
--- a/ash/launcher/launcher.cc
+++ b/ash/launcher/launcher.cc
@@ -189,4 +189,12 @@ void Launcher::UpdateBackground(int alpha) {
layer->SetColor(SkColorSetARGB(alpha, 0, 0, 0));
}
+void Launcher::AddIconsObserver(LauncherIconsObserver* observer) {
sky 2012/03/23 21:41:14 Fix the order to match the header.
+ launcher_view_->AddIconsObserver(observer);
+}
+
+void Launcher::RemoveIconsObserver(LauncherIconsObserver* observer) {
+ launcher_view_->RemoveIconsObserver(observer);
+}
+
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698