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

Unified Diff: ash/common/system/chromeos/tray_tracing.cc

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: rebase Created 3 years, 10 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
« no previous file with comments | « ash/common/system/chromeos/tray_caps_lock.cc ('k') | ash/common/system/tray/tray_details_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/chromeos/tray_tracing.cc
diff --git a/ash/common/system/chromeos/tray_tracing.cc b/ash/common/system/chromeos/tray_tracing.cc
index c15bf2e6a297b53156691622e075dfebb8d8955a..15a7eae5c82a7c6b1dc077456854dbadd1f5abe7 100644
--- a/ash/common/system/chromeos/tray_tracing.cc
+++ b/ash/common/system/chromeos/tray_tracing.cc
@@ -35,10 +35,10 @@ class DefaultTracingView : public ActionableView {
TriView* tri_view = TrayPopupUtils::CreateDefaultRowView();
AddChildView(tri_view);
- auto image = TrayPopupUtils::CreateMainImageView();
+ auto* image = TrayPopupUtils::CreateMainImageView();
tri_view->AddView(TriView::Container::START, image);
- auto label = TrayPopupUtils::CreateDefaultLabel();
+ auto* label = TrayPopupUtils::CreateDefaultLabel();
label->SetMultiLine(true);
label->SetText(l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_TRACING));
tri_view->AddView(TriView::Container::CENTER, label);
« no previous file with comments | « ash/common/system/chromeos/tray_caps_lock.cc ('k') | ash/common/system/tray/tray_details_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698