| Index: content/browser/web_contents/aura/overscroll_navigation_overlay.h
|
| diff --git a/content/browser/web_contents/aura/overscroll_navigation_overlay.h b/content/browser/web_contents/aura/overscroll_navigation_overlay.h
|
| index d65d374a848ab512a9246c0dc580c34fd6b0ce66..a80f6ab6255834236b0120916b1797948f3f396a 100644
|
| --- a/content/browser/web_contents/aura/overscroll_navigation_overlay.h
|
| +++ b/content/browser/web_contents/aura/overscroll_navigation_overlay.h
|
| @@ -13,10 +13,13 @@
|
|
|
| struct ViewHostMsg_UpdateRect_Params;
|
|
|
| +namespace aura {
|
| +class ImageWindowDelegate;
|
| +}
|
| +
|
| namespace content {
|
|
|
| class ImageLayerDelegate;
|
| -class ImageWindowDelegate;
|
| class OverscrollNavigationOverlayTest;
|
|
|
| // When a history navigation is triggered at the end of an overscroll
|
| @@ -46,7 +49,7 @@ class CONTENT_EXPORT OverscrollNavigationOverlay
|
| // Note that ImageWindowDelegate manages its own lifetime, so this function
|
| // does not take ownership of |delegate|.
|
| void SetOverlayWindow(scoped_ptr<aura::Window> window,
|
| - ImageWindowDelegate* delegate);
|
| + aura::ImageWindowDelegate* delegate);
|
|
|
| private:
|
| friend class OverscrollNavigationOverlayTest;
|
| @@ -96,7 +99,7 @@ class CONTENT_EXPORT OverscrollNavigationOverlay
|
|
|
| // This is the WindowDelegate of |window_|. The delegate manages its own
|
| // lifetime (destroys itself when |window_| is destroyed).
|
| - ImageWindowDelegate* image_delegate_;
|
| + aura::ImageWindowDelegate* image_delegate_;
|
|
|
| bool loading_complete_;
|
| bool received_paint_update_;
|
|
|