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

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

Issue 2000403003: [forbots] IWYU for ax_enums.h Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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_md.h" 5 #include "chrome/browser/ui/views/download/download_item_view_md.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <vector> 10 #include <vector>
(...skipping 25 matching lines...) Expand all
36 #include "chrome/browser/ui/views/bar_control_button.h" 36 #include "chrome/browser/ui/views/bar_control_button.h"
37 #include "chrome/browser/ui/views/download/download_feedback_dialog_view.h" 37 #include "chrome/browser/ui/views/download/download_feedback_dialog_view.h"
38 #include "chrome/browser/ui/views/download/download_shelf_context_menu_view.h" 38 #include "chrome/browser/ui/views/download/download_shelf_context_menu_view.h"
39 #include "chrome/browser/ui/views/download/download_shelf_view.h" 39 #include "chrome/browser/ui/views/download/download_shelf_view.h"
40 #include "chrome/browser/ui/views/frame/browser_view.h" 40 #include "chrome/browser/ui/views/frame/browser_view.h"
41 #include "chrome/common/pref_names.h" 41 #include "chrome/common/pref_names.h"
42 #include "chrome/grit/generated_resources.h" 42 #include "chrome/grit/generated_resources.h"
43 #include "components/prefs/pref_service.h" 43 #include "components/prefs/pref_service.h"
44 #include "content/public/browser/download_danger_type.h" 44 #include "content/public/browser/download_danger_type.h"
45 #include "third_party/icu/source/common/unicode/uchar.h" 45 #include "third_party/icu/source/common/unicode/uchar.h"
46 #include "ui/accessibility/ax_enums.h"
46 #include "ui/accessibility/ax_view_state.h" 47 #include "ui/accessibility/ax_view_state.h"
47 #include "ui/base/l10n/l10n_util.h" 48 #include "ui/base/l10n/l10n_util.h"
48 #include "ui/base/material_design/material_design_controller.h" 49 #include "ui/base/material_design/material_design_controller.h"
49 #include "ui/base/resource/resource_bundle.h" 50 #include "ui/base/resource/resource_bundle.h"
50 #include "ui/base/theme_provider.h" 51 #include "ui/base/theme_provider.h"
51 #include "ui/events/event.h" 52 #include "ui/events/event.h"
52 #include "ui/gfx/animation/slide_animation.h" 53 #include "ui/gfx/animation/slide_animation.h"
53 #include "ui/gfx/canvas.h" 54 #include "ui/gfx/canvas.h"
54 #include "ui/gfx/color_palette.h" 55 #include "ui/gfx/color_palette.h"
55 #include "ui/gfx/color_utils.h" 56 #include "ui/gfx/color_utils.h"
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 SchedulePaint(); 1129 SchedulePaint();
1129 } 1130 }
1130 1131
1131 SkColor DownloadItemViewMd::GetTextColor() const { 1132 SkColor DownloadItemViewMd::GetTextColor() const {
1132 return GetTextColorForThemeProvider(GetThemeProvider()); 1133 return GetTextColorForThemeProvider(GetThemeProvider());
1133 } 1134 }
1134 1135
1135 SkColor DownloadItemViewMd::GetDimmedTextColor() const { 1136 SkColor DownloadItemViewMd::GetDimmedTextColor() const {
1136 return SkColorSetA(GetTextColor(), 0xC7); 1137 return SkColorSetA(GetTextColor(), 0xC7);
1137 } 1138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698