| Index: chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| index e4509dd95da9fc629bc683ed86fea0cb7315a186..6c45dd4c5ddaeaae01226c97be013253cd813725 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| @@ -21,10 +21,14 @@
|
| #include "ui/views/widget/widget.h"
|
| #include "ui/views/window/non_client_view.h"
|
|
|
| +namespace {
|
| +
|
| // This is the number of pixels in the border image interior to the actual
|
| // border.
|
| const int kBorderInterior = 6;
|
|
|
| +} // namespace
|
| +
|
| class OmniboxPopupContentsView::AutocompletePopupWidget
|
| : public views::Widget,
|
| public base::SupportsWeakPtr<AutocompletePopupWidget> {
|
| @@ -406,7 +410,11 @@ OmniboxResultView* OmniboxPopupContentsView::CreateResultView(
|
| }
|
|
|
| ////////////////////////////////////////////////////////////////////////////////
|
| -// OmniboxPopupContentsView, views::View overrides, protected:
|
| +// OmniboxPopupContentsView, views::View overrides, private:
|
| +
|
| +const char* OmniboxPopupContentsView::GetClassName() const {
|
| + return "OmniboxPopupContentsView";
|
| +}
|
|
|
| void OmniboxPopupContentsView::OnPaint(gfx::Canvas* canvas) {
|
| gfx::Rect contents_bounds = GetContentsBounds();
|
|
|