| Index: chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.h
|
| diff --git a/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.h b/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.h
|
| index 5e995b3b376a84ff8a6fb010c43d41e31cedfed7..09fba302368885cc66388b0b7c63ea8754c95c9c 100644
|
| --- a/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.h
|
| +++ b/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -88,12 +88,12 @@ class AutocompletePopupContentsView : public views::View,
|
| const gfx::Font& bold_font);
|
|
|
| // Overridden from views::View:
|
| - virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
|
| + virtual void OnPaint(gfx::CanvasSkia* canvas) OVERRIDE;
|
| // This method should not be triggered directly as we paint our children
|
| // in an un-conventional way inside OnPaint. We use a separate canvas to
|
| // paint the children. Hence we override this method to a no-op so that
|
| // the view hierarchy does not "accidentally" trigger this.
|
| - virtual void PaintChildren(gfx::Canvas* canvas) OVERRIDE;
|
| + virtual void PaintChildren(gfx::CanvasSkia* canvas) OVERRIDE;
|
|
|
| scoped_ptr<AutocompletePopupModel> model_;
|
|
|
| @@ -118,7 +118,7 @@ class AutocompletePopupContentsView : public views::View,
|
| void UpdateBlurRegion();
|
|
|
| // Makes the contents of the canvas slightly transparent.
|
| - void MakeCanvasTransparent(gfx::Canvas* canvas);
|
| + void MakeCanvasTransparent(gfx::CanvasSkia* canvas);
|
|
|
| // Called when the line at the specified index should be opened with the
|
| // provided disposition.
|
|
|