| Index: chrome/browser/download/download_util.cc
|
| diff --git a/chrome/browser/download/download_util.cc b/chrome/browser/download/download_util.cc
|
| index 05751ded1ff230e8b028cb2f9f6e1809025a5dfa..774ba138aee24af9cb004e8e3dd0c568f392e42d 100644
|
| --- a/chrome/browser/download/download_util.cc
|
| +++ b/chrome/browser/download/download_util.cc
|
| @@ -70,6 +70,7 @@
|
| #include "views/widget/widget_gtk.h"
|
| #elif defined(TOOLKIT_GTK)
|
| #include "chrome/browser/ui/gtk/custom_drag.h"
|
| +#include "chrome/browser/ui/gtk/unity_service.h"
|
| #endif // defined(TOOLKIT_GTK)
|
| #endif // defined(TOOLKIT_USES_GTK)
|
|
|
| @@ -756,6 +757,9 @@ void UpdateAppIconDownloadProgress(int download_count,
|
| else
|
| taskbar->SetProgressValue(frame, static_cast<int>(progress * 100), 100);
|
| }
|
| +#elif defined(TOOLKIT_GTK)
|
| + unity::SetDownloadCount(download_count);
|
| + unity::SetProgressPercent(progress);
|
| #endif
|
| }
|
| #endif
|
|
|