| Index: chrome/browser/ui/views/location_bar/origin_chip_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/origin_chip_view.cc b/chrome/browser/ui/views/location_bar/origin_chip_view.cc
|
| index 1285e33c7790043415622ffb284255db6e72347a..51d2bb524b3007563df9a1a4b4212f815b02c87e 100644
|
| --- a/chrome/browser/ui/views/location_bar/origin_chip_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/origin_chip_view.cc
|
| @@ -166,12 +166,12 @@ OriginChipView::OriginChipView(LocationBarView* location_bar_view,
|
|
|
| ev_label_ = new views::Label(base::string16(), GetFontList());
|
| ev_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
|
| - ev_label_->SetElideBehavior(gfx::TRUNCATE);
|
| + ev_label_->SetElideBehavior(gfx::NO_ELIDE);
|
| AddChildView(ev_label_);
|
|
|
| host_label_ = new views::Label(base::string16(), GetFontList());
|
| host_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
|
| - host_label_->SetElideBehavior(gfx::TRUNCATE);
|
| + host_label_->SetElideBehavior(gfx::NO_ELIDE);
|
| AddChildView(host_label_);
|
|
|
| fade_in_animation_.SetTweenType(gfx::Tween::LINEAR_OUT_SLOW_IN);
|
|
|