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

Unified Diff: chrome/browser/ui/views/aura/launcher_icon_updater.cc

Issue 9033007: Rename the aura_shell namespace to ash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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/launcher_icon_updater.cc
===================================================================
--- chrome/browser/ui/views/aura/launcher_icon_updater.cc (revision 115744)
+++ chrome/browser/ui/views/aura/launcher_icon_updater.cc (working copy)
@@ -15,7 +15,7 @@
LauncherIconUpdater::LauncherIconUpdater(
TabStripModel* tab_model,
- aura_shell::LauncherModel* launcher_model,
+ ash::LauncherModel* launcher_model,
aura::Window* window)
: tab_model_(tab_model),
launcher_model_(launcher_model),
@@ -67,7 +67,7 @@
if (item_index == -1)
return;
- if (launcher_model_->items()[item_index].type == aura_shell::TYPE_APP) {
+ if (launcher_model_->items()[item_index].type == ash::TYPE_APP) {
// Use the app icon if we can.
SkBitmap image;
if (tab->extension_tab_helper()->GetExtensionAppIcon())
@@ -78,7 +78,7 @@
return;
}
- aura_shell::LauncherTabbedImages images;
+ ash::LauncherTabbedImages images;
if (tab->favicon_tab_helper()->ShouldDisplayFavicon()) {
images.resize(1);
images[0].image = tab->favicon_tab_helper()->GetFavicon();

Powered by Google App Engine
This is Rietveld 408576698