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

Side by Side Diff: chrome/browser/ui/views/download/download_item_view.cc

Issue 10656014: Merge 143605 - grd file update for new 2x assets (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 6 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/download/download_item_view.h" 5 #include "chrome/browser/ui/views/download/download_item_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/file_path.h" 12 #include "base/file_path.h"
13 #include "base/i18n/break_iterator.h" 13 #include "base/i18n/break_iterator.h"
14 #include "base/i18n/rtl.h" 14 #include "base/i18n/rtl.h"
15 #include "base/metrics/histogram.h" 15 #include "base/metrics/histogram.h"
16 #include "base/string_util.h" 16 #include "base/string_util.h"
17 #include "base/stringprintf.h" 17 #include "base/stringprintf.h"
18 #include "base/sys_string_conversions.h" 18 #include "base/sys_string_conversions.h"
19 #include "base/utf_string_conversions.h" 19 #include "base/utf_string_conversions.h"
20 #include "chrome/browser/browser_process.h" 20 #include "chrome/browser/browser_process.h"
21 #include "chrome/browser/download/chrome_download_manager_delegate.h" 21 #include "chrome/browser/download/chrome_download_manager_delegate.h"
22 #include "chrome/browser/download/download_item_model.h" 22 #include "chrome/browser/download/download_item_model.h"
23 #include "chrome/browser/download/download_util.h" 23 #include "chrome/browser/download/download_util.h"
24 #include "chrome/browser/themes/theme_service.h" 24 #include "chrome/browser/themes/theme_service.h"
25 #include "chrome/browser/ui/views/download/download_shelf_context_menu_view.h" 25 #include "chrome/browser/ui/views/download/download_shelf_context_menu_view.h"
26 #include "chrome/browser/ui/views/download/download_shelf_view.h" 26 #include "chrome/browser/ui/views/download/download_shelf_view.h"
27 #include "grit/generated_resources.h" 27 #include "grit/generated_resources.h"
28 #include "grit/theme_resources.h" 28 #include "grit/theme_resources.h"
29 #include "grit/theme_resources_standard.h"
29 #include "ui/base/accessibility/accessible_view_state.h" 30 #include "ui/base/accessibility/accessible_view_state.h"
30 #include "ui/base/animation/slide_animation.h" 31 #include "ui/base/animation/slide_animation.h"
31 #include "ui/base/l10n/l10n_util.h" 32 #include "ui/base/l10n/l10n_util.h"
32 #include "ui/base/resource/resource_bundle.h" 33 #include "ui/base/resource/resource_bundle.h"
33 #include "ui/base/text/text_elider.h" 34 #include "ui/base/text/text_elider.h"
34 #include "ui/gfx/canvas.h" 35 #include "ui/gfx/canvas.h"
35 #include "ui/gfx/color_utils.h" 36 #include "ui/gfx/color_utils.h"
36 #include "ui/gfx/image/image.h" 37 #include "ui/gfx/image/image.h"
37 #include "ui/views/controls/button/text_button.h" 38 #include "ui/views/controls/button/text_button.h"
38 #include "ui/views/controls/label.h" 39 #include "ui/views/controls/label.h"
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1180 // Drop down button is glued to the left of the download shelf. 1181 // Drop down button is glued to the left of the download shelf.
1181 drop_down_x_left_ = 0; 1182 drop_down_x_left_ = 0;
1182 drop_down_x_right_ = normal_drop_down_image_set_.top->width(); 1183 drop_down_x_right_ = normal_drop_down_image_set_.top->width();
1183 } else { 1184 } else {
1184 // Drop down button is glued to the right of the download shelf. 1185 // Drop down button is glued to the right of the download shelf.
1185 drop_down_x_left_ = 1186 drop_down_x_left_ =
1186 size.width() - normal_drop_down_image_set_.top->width(); 1187 size.width() - normal_drop_down_image_set_.top->width();
1187 drop_down_x_right_ = size.width(); 1188 drop_down_x_right_ = size.width();
1188 } 1189 }
1189 } 1190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698