Index: trunk/src/ui/app_list/app_list_folder_item.cc |
=================================================================== |
--- trunk/src/ui/app_list/app_list_folder_item.cc (revision 230254) |
+++ trunk/src/ui/app_list/app_list_folder_item.cc (working copy) |
@@ -15,7 +15,7 @@ |
const size_t kNumTopApps = 4; |
const int kItemIconDimension = 16; |
-// Generates the folder icon with the top 4 child item icons laid in 2x2 tile. |
+// Genearats the folder icon with the top 4 child item icons laid in 2x2 tile. |
class FolderImageSource : public gfx::CanvasImageSource { |
public: |
typedef std::vector<gfx::ImageSkia> Icons; |
@@ -45,11 +45,11 @@ |
virtual void Draw(gfx::Canvas* canvas) OVERRIDE { |
// Draw folder circle. |
gfx::Point center = gfx::Point(size().width() / 2 , size().height() / 2); |
- const SkColor kCircleColor = SkColorSetRGB(0xE1, 0xE1, 0xE1); |
+ const SkColor kCirclColor = SkColorSetRGB(0xE1, 0xE1, 0xE1); |
SkPaint paint; |
paint.setStyle(SkPaint::kFill_Style); |
paint.setAntiAlias(true); |
- paint.setColor(kCircleColor); |
+ paint.setColor(kCirclColor); |
canvas->DrawCircle(center, size().width() / 2, paint); |
if (icons_.size() == 0) |
@@ -144,7 +144,8 @@ |
} |
void AppListFolderItem::Activate(int event_flags) { |
- // Folder handling is implemented by the View, so do nothing. |
+ // TODO(stevenjb/jennyz): Implement. |
+ VLOG(1) << "AppListFolderItem::Activate"; |
} |
// static |