| Index: chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h
|
| index e1d7f322517b2b018492bfb0e4cd996b29b19a4e..376f2f57a91570126cd9ef4f66684c5d2ff98510 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h
|
| @@ -68,9 +68,9 @@ class OmniboxPopupContentsView : public views::View,
|
| gfx::Image GetIconIfExtensionMatch(size_t index) const;
|
| bool IsStarredMatch(const AutocompleteMatch& match) const;
|
|
|
| - int max_match_contents_width() const {
|
| - return max_match_contents_width_;
|
| - }
|
| + int max_match_contents_width() const { return max_match_contents_width_; }
|
| + int start_margin() const { return start_margin_; }
|
| + int end_margin() const { return end_margin_; }
|
|
|
| protected:
|
| OmniboxPopupContentsView(const gfx::FontList& font_list,
|
| @@ -153,8 +153,8 @@ class OmniboxPopupContentsView : public views::View,
|
| gfx::Rect start_bounds_;
|
| gfx::Rect target_bounds_;
|
|
|
| - int left_margin_;
|
| - int right_margin_;
|
| + int start_margin_;
|
| + int end_margin_;
|
|
|
| const gfx::ImageSkia* bottom_shadow_; // Ptr owned by resource bundle.
|
|
|
|
|