| Index: ui/app_list/app_list_folder_item.cc
|
| diff --git a/ui/app_list/app_list_folder_item.cc b/ui/app_list/app_list_folder_item.cc
|
| index 0868d623738a2e4808cfc209f465723255585bb5..576a5cf1b5aa5d097a137987201961b20310fd81 100644
|
| --- a/ui/app_list/app_list_folder_item.cc
|
| +++ b/ui/app_list/app_list_folder_item.cc
|
| @@ -15,7 +15,7 @@ const int kIconDimension = 48;
|
| const size_t kNumTopApps = 4;
|
| const int kItemIconDimension = 16;
|
|
|
| -// Genearats the folder icon with the top 4 child item icons laid in 2x2 tile.
|
| +// Generates 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 @@ class FolderImageSource : public gfx::CanvasImageSource {
|
| virtual void Draw(gfx::Canvas* canvas) OVERRIDE {
|
| // Draw folder circle.
|
| gfx::Point center = gfx::Point(size().width() / 2 , size().height() / 2);
|
| - const SkColor kCirclColor = SkColorSetRGB(0xE1, 0xE1, 0xE1);
|
| + const SkColor kCircleColor = SkColorSetRGB(0xE1, 0xE1, 0xE1);
|
| SkPaint paint;
|
| paint.setStyle(SkPaint::kFill_Style);
|
| paint.setAntiAlias(true);
|
| - paint.setColor(kCirclColor);
|
| + paint.setColor(kCircleColor);
|
| canvas->DrawCircle(center, size().width() / 2, paint);
|
|
|
| if (icons_.size() == 0)
|
|
|