diff options
Diffstat (limited to 'chrome/browser/ui/views/browser_bubble.cc')
-rw-r--r-- | chrome/browser/ui/views/browser_bubble.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/ui/views/browser_bubble.cc b/chrome/browser/ui/views/browser_bubble.cc index f826469..6dcd658 100644 --- a/chrome/browser/ui/views/browser_bubble.cc +++ b/chrome/browser/ui/views/browser_bubble.cc @@ -32,7 +32,7 @@ BrowserBubbleHost* GetBubbleHostFromFrame(views::Widget* frame) { BrowserBubble::BrowserBubble(views::View* view, views::Widget* frame, const gfx::Rect& relative_to, - views::BubbleBorder::ArrowLocation arrow_location) + BubbleBorder::ArrowLocation arrow_location) : frame_(frame), view_(view), relative_to_(relative_to), @@ -48,7 +48,7 @@ BrowserBubble::BrowserBubble(views::View* view, // Use half the corner radius as contents margins so that contents fit better // in the bubble. See http://crbug.com/80416. - int corner_inset = views::BubbleBorder::GetCornerRadius() / 2; + int corner_inset = BubbleBorder::GetCornerRadius() / 2; gfx::Insets content_margins(corner_inset, corner_inset, corner_inset, corner_inset); InitPopup(content_margins); @@ -146,3 +146,5 @@ void BrowserBubble::SetAbsoluteBounds(const gfx::Rect& window_bounds) { void BrowserBubble::MovePopup(int x, int y, int w, int h) { popup_->SetBounds(gfx::Rect(x, y, w, h)); } + + |