summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/download_tab_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views/download_tab_view.h')
-rw-r--r--chrome/browser/views/download_tab_view.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/browser/views/download_tab_view.h b/chrome/browser/views/download_tab_view.h
index 1ba7433..932f5c1 100644
--- a/chrome/browser/views/download_tab_view.h
+++ b/chrome/browser/views/download_tab_view.h
@@ -157,6 +157,9 @@ class DownloadTabView : public views::View,
// The destination view's search box text has changed.
void SetSearchText(const std::wstring& search_text);
+ inline int big_icon_size() const { return big_icon_size_; }
+ inline int big_icon_offset() const { return big_icon_offset_; }
+
private:
// Creates and attaches to the view the floating view at |index|.
views::View* CreateFloatingViewForIndex(int index);
@@ -200,6 +203,10 @@ class DownloadTabView : public views::View,
// being a dangerous download.
base::hash_set<DownloadItem*> dangerous_downloads_;
+ // Cache the language specific large icon positional information.
+ int big_icon_size_;
+ int big_icon_offset_;
+
// Provide a start position for downloads with no known size.
int start_angle_;