Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Unified Diff: content/browser/web_contents/aura/overscroll_navigation_overlay.h

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed overrides in TouchHandleDrawableAura Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698