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

Side by Side Diff: chrome/browser/ui/views/bookmarks/bookmark_bar_view.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/bookmarks/bookmark_bar_view.h" 5 #include "chrome/browser/ui/views/bookmarks/bookmark_bar_view.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <limits> 10 #include <limits>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 #include "content/public/browser/notification_source.h" 67 #include "content/public/browser/notification_source.h"
68 #include "content/public/browser/page_navigator.h" 68 #include "content/public/browser/page_navigator.h"
69 #include "content/public/browser/render_view_host.h" 69 #include "content/public/browser/render_view_host.h"
70 #include "content/public/browser/render_widget_host_view.h" 70 #include "content/public/browser/render_widget_host_view.h"
71 #include "content/public/browser/user_metrics.h" 71 #include "content/public/browser/user_metrics.h"
72 #include "content/public/browser/web_contents.h" 72 #include "content/public/browser/web_contents.h"
73 #include "extensions/browser/extension_registry.h" 73 #include "extensions/browser/extension_registry.h"
74 #include "extensions/common/extension.h" 74 #include "extensions/common/extension.h"
75 #include "extensions/common/extension_set.h" 75 #include "extensions/common/extension_set.h"
76 #include "grit/theme_resources.h" 76 #include "grit/theme_resources.h"
77 #include "ui/accessibility/ax_enums.h"
77 #include "ui/accessibility/ax_view_state.h" 78 #include "ui/accessibility/ax_view_state.h"
78 #include "ui/base/dragdrop/drag_utils.h" 79 #include "ui/base/dragdrop/drag_utils.h"
79 #include "ui/base/dragdrop/os_exchange_data.h" 80 #include "ui/base/dragdrop/os_exchange_data.h"
80 #include "ui/base/l10n/l10n_util.h" 81 #include "ui/base/l10n/l10n_util.h"
81 #include "ui/base/material_design/material_design_controller.h" 82 #include "ui/base/material_design/material_design_controller.h"
82 #include "ui/base/page_transition_types.h" 83 #include "ui/base/page_transition_types.h"
83 #include "ui/base/resource/resource_bundle.h" 84 #include "ui/base/resource/resource_bundle.h"
84 #include "ui/base/theme_provider.h" 85 #include "ui/base/theme_provider.h"
85 #include "ui/base/window_open_disposition.h" 86 #include "ui/base/window_open_disposition.h"
86 #include "ui/compositor/paint_recorder.h" 87 #include "ui/compositor/paint_recorder.h"
(...skipping 2067 matching lines...) Expand 10 before | Expand all | Expand 10 after
2154 return; 2155 return;
2155 apps_page_shortcut_->SetVisible(visible); 2156 apps_page_shortcut_->SetVisible(visible);
2156 UpdateBookmarksSeparatorVisibility(); 2157 UpdateBookmarksSeparatorVisibility();
2157 LayoutAndPaint(); 2158 LayoutAndPaint();
2158 } 2159 }
2159 2160
2160 void BookmarkBarView::OnShowManagedBookmarksPrefChanged() { 2161 void BookmarkBarView::OnShowManagedBookmarksPrefChanged() {
2161 if (UpdateOtherAndManagedButtonsVisibility()) 2162 if (UpdateOtherAndManagedButtonsVisibility())
2162 LayoutAndPaint(); 2163 LayoutAndPaint();
2163 } 2164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698