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

Unified Diff: chrome/browser/chromeos/ui/focus_ring_layer.cc

Issue 224113005: Eliminate ash::internal namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/ui/focus_ring_layer.cc
diff --git a/chrome/browser/chromeos/ui/focus_ring_layer.cc b/chrome/browser/chromeos/ui/focus_ring_layer.cc
index 303d5944f4be0ab33572a6064f8796b18f9c6f02..97b637d301c721b96de5f3993d14f8d38660b221 100644
--- a/chrome/browser/chromeos/ui/focus_ring_layer.cc
+++ b/chrome/browser/chromeos/ui/focus_ring_layer.cc
@@ -82,15 +82,13 @@ void FocusRingLayer::SetForView(views::View* view) {
// Workarounds for system tray items that have customized focus borders. The
// insets here must be consistent with the ones used by those classes.
- if (view->GetClassName() ==
- ash::internal::ActionableView::kViewClassName) {
+ if (view->GetClassName() == ash::ActionableView::kViewClassName) {
view_bounds = view->GetLocalBounds();
view_bounds.Inset(1, 1, 3, 3);
- } else if (view->GetClassName() ==
- ash::internal::TrayBackgroundView::kViewClassName) {
+ } else if (view->GetClassName() == ash::TrayBackgroundView::kViewClassName) {
view_bounds.Inset(1, 1, 3, 3);
} else if (view->GetClassName() ==
- ash::internal::TrayPopupHeaderButton::kViewClassName) {
+ ash::TrayPopupHeaderButton::kViewClassName) {
view_bounds = view->GetLocalBounds();
view_bounds.Inset(2, 1, 2, 2);
}
« no previous file with comments | « chrome/browser/chromeos/system_logs/touch_log_source.cc ('k') | chrome/browser/chromeos/ui/idle_app_name_notification_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698