OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_AURA_OVERSCROLL_NAVIGATION_OVERLAY_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_AURA_OVERSCROLL_NAVIGATION_OVERLAY_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_AURA_OVERSCROLL_NAVIGATION_OVERLAY_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_AURA_OVERSCROLL_NAVIGATION_OVERLAY_H_ |
7 | 7 |
8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "content/browser/web_contents/aura/window_slider.h" | 10 #include "content/browser/web_contents/aura/overscroll_window_animation.h" |
11 #include "content/browser/web_contents/web_contents_view_aura.h" | |
11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
12 #include "content/public/browser/web_contents_observer.h" | 13 #include "content/public/browser/web_contents_observer.h" |
14 #include "ui/gfx/image/image.h" | |
13 | 15 |
14 struct ViewHostMsg_UpdateRect_Params; | 16 struct ViewHostMsg_UpdateRect_Params; |
15 | 17 |
16 namespace aura_extra { | 18 namespace aura_extra { |
17 class ImageWindowDelegate; | 19 class ImageWindowDelegate; |
18 } | 20 } |
19 | 21 |
20 namespace content { | 22 namespace content { |
21 | 23 |
22 class ImageLayerDelegate; | 24 class ImageLayerDelegate; |
25 class OverscrollWindowDelegate; | |
23 class OverscrollNavigationOverlayTest; | 26 class OverscrollNavigationOverlayTest; |
24 | 27 |
25 // When a history navigation is triggered at the end of an overscroll | 28 // When a history navigation is triggered at the end of an overscroll |
26 // navigation, it is necessary to show the history-screenshot until the page is | 29 // navigation, it is necessary to show the history-screenshot until the page is |
27 // done navigating and painting. This class accomplishes this by showing the | 30 // done navigating and painting. This class accomplishes this by showing the |
28 // screenshot window on top of the page until the page has completed loading and | 31 // screenshot window on top of the page until the page has completed loading and |
29 // painting. | 32 // painting. |
30 class CONTENT_EXPORT OverscrollNavigationOverlay | 33 class CONTENT_EXPORT OverscrollNavigationOverlay |
31 : public WebContentsObserver, | 34 : public WebContentsObserver, |
32 public WindowSlider::Delegate { | 35 public OverscrollWindowAnimation::Delegate { |
33 public: | 36 public: |
34 explicit OverscrollNavigationOverlay(WebContentsImpl* web_contents); | 37 OverscrollNavigationOverlay(WebContentsImpl* web_contents, |
38 OverscrollWindowAnimation* owa, | |
39 aura::Window* web_contents_window); | |
40 | |
35 ~OverscrollNavigationOverlay() override; | 41 ~OverscrollNavigationOverlay() override; |
36 | 42 |
37 bool has_window() const { return !!window_.get(); } | 43 OverscrollWindowAnimation::Direction direction() { return direction_; } |
38 | |
39 // Resets state and starts observing |web_contents_| for page load/paint | |
40 // updates. This function makes sure that the screenshot window is stacked | |
41 // on top, so that it hides the content window behind it, and destroys the | |
42 // screenshot window when the page is done loading/painting. | |
43 // This should be called immediately after initiating the navigation, | |
44 // otherwise the overlay may be dismissed prematurely. | |
45 void StartObserving(); | |
46 | |
47 // Sets the screenshot window and the delegate. This takes ownership of | |
48 // |window|. | |
49 // Note that aura_extra::ImageWindowDelegate manages its own lifetime, so this | |
50 // function does not take ownership of |delegate|. | |
51 void SetOverlayWindow(scoped_ptr<aura::Window> window, | |
52 aura_extra::ImageWindowDelegate* delegate); | |
53 | 44 |
54 private: | 45 private: |
55 friend class OverscrollNavigationOverlayTest; | 46 friend class OverscrollNavigationOverlayTest; |
56 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, | 47 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, |
57 FirstVisuallyNonEmptyPaint_NoImage); | 48 FirstVisuallyNonEmptyPaint_NoImage); |
58 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, | 49 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, |
59 FirstVisuallyNonEmptyPaint_WithImage); | 50 FirstVisuallyNonEmptyPaint_WithImage); |
60 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, | 51 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, |
61 LoadUpdateWithoutNonEmptyPaint); | 52 LoadUpdateWithoutNonEmptyPaint); |
62 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, | 53 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, |
63 MultiNavigation_LoadingUpdate); | 54 MultiNavigation_LoadingUpdate); |
64 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, | 55 FRIEND_TEST_ALL_PREFIXES(OverscrollNavigationOverlayTest, |
65 MultiNavigation_PaintUpdate); | 56 MultiNavigation_PaintUpdate); |
66 | 57 |
67 enum SlideDirection { | 58 // Resets state and starts observing |web_contents_| for page load/paint |
68 SLIDE_UNKNOWN, | 59 // updates. This function makes sure that the screenshot window is stacked |
69 SLIDE_BACK, | 60 // on top, so that it hides the content window behind it, and destroys the |
70 SLIDE_FRONT | 61 // screenshot window when the page is done loading/painting. |
71 }; | 62 // This should be called immediately after initiating the navigation, |
63 // otherwise the overlay may be dismissed prematurely. | |
64 void StartObserving(); | |
65 | |
66 // Creates the overlay window. | |
67 void SetupOverlayWindow(); | |
68 | |
69 // Returns the screenshot for the given direction. | |
70 const gfx::Image GetImageForDirection( | |
71 OverscrollWindowAnimation::Direction direction) const; | |
72 | |
73 // Creates a layer to slide on top of the overscroll window. | |
74 scoped_ptr<ui::Layer> CreateSlideLayer(); | |
75 | |
76 // Creates the overscroll window if it does not exist or adds a layer if it | |
77 // does. | |
78 // TODO find a better name. | |
79 scoped_ptr<OverscrollLayerWrapper> CreateLayer(); | |
72 | 80 |
73 // Stop observing the page and start the final overlay fade-out animation if | 81 // Stop observing the page and start the final overlay fade-out animation if |
74 // a window-slide isn't in progress and either the page has been painted or | 82 // a window-slide isn't in progress and either the page has been painted or |
75 // the page-load has completed. | 83 // the page-load has completed. |
76 void StopObservingIfDone(); | 84 void StopObservingIfDone(); |
77 | 85 |
86 // Fades out the overscroll window and dismisses it. | |
87 void FadeOutOverscrollWindow(); | |
88 | |
78 // Creates a layer to be used for window-slide. |offset| is the offset of the | 89 // Creates a layer to be used for window-slide. |offset| is the offset of the |
79 // NavigationEntry for the screenshot image to display. | 90 // NavigationEntry for the screenshot image to display. |
80 ui::Layer* CreateSlideLayer(int offset); | 91 ui::Layer* CreateSlideLayer(int offset); |
81 | 92 |
82 // Overridden from WindowSlider::Delegate: | 93 // Overridden from OverscrollWindowAnimation::Delegate: |
83 ui::Layer* CreateBackLayer() override; | 94 scoped_ptr<OverscrollLayerWrapper> CreateFrontLayer() override; |
84 ui::Layer* CreateFrontLayer() override; | 95 scoped_ptr<OverscrollLayerWrapper> CreateBackLayer() override; |
85 void OnWindowSlideCompleting() override; | 96 void OnOverscrollCompleted( |
86 void OnWindowSlideCompleted(scoped_ptr<ui::Layer> layer) override; | 97 scoped_ptr<OverscrollLayerWrapper> layer_wrapper) override; |
87 void OnWindowSlideAborted() override; | 98 void OnOverscrollCompleting() override; |
88 void OnWindowSliderDestroyed() override; | |
89 | 99 |
90 // Overridden from WebContentsObserver: | 100 // Overridden from WebContentsObserver: |
91 void DidFirstVisuallyNonEmptyPaint() override; | 101 void DidFirstVisuallyNonEmptyPaint() override; |
92 void DidStopLoading(RenderViewHost* host) override; | 102 void DidStopLoading(RenderViewHost* host) override; |
93 | 103 |
94 // The WebContents which is being navigated. | 104 // The current overscroll direction. |
105 OverscrollWindowAnimation::Direction direction_; | |
106 | |
107 // The web contents that are being navigated. | |
95 WebContentsImpl* web_contents_; | 108 WebContentsImpl* web_contents_; |
96 | 109 |
97 // The screenshot overlay window. | 110 // The window shown on top of the live window for the animations. |
mfomitchev
2015/03/05 23:37:06
This comment is confusing:
- live window is a conc
Nina
2015/03/09 15:54:52
Agreed, hopefully the new comment is better.
| |
98 scoped_ptr<aura::Window> window_; | 111 scoped_ptr<aura::Window> window_; |
99 | 112 |
100 // This is the WindowDelegate of |window_|. The delegate manages its own | 113 // True if we have completed loading the page. |
101 // lifetime (destroys itself when |window_| is destroyed). | 114 bool loading_complete_; |
102 aura_extra::ImageWindowDelegate* image_delegate_; | |
103 | 115 |
104 bool loading_complete_; | 116 // True if we are currently observing for a page load. |
105 bool received_paint_update_; | 117 bool observing_; |
mfomitchev
2015/03/05 23:37:06
I don't think we need observing_ - see my comment
Nina
2015/03/09 15:54:52
Brought back. The reason why it was removed is bec
mfomitchev
2015/03/10 19:25:58
Ah, I see.
| |
106 | 118 |
107 // URL of the NavigationEntry we are navigating to. This is needed to | 119 // URL of the NavigationEntry we are navigating to. This is needed to |
108 // filter on WebContentsObserver callbacks and is used to dismiss the overlay | 120 // filter on WebContentsObserver callbacks and is used to dismiss the overlay |
109 // when the relevant page loads and paints. | 121 // when the relevant page loads and paints. |
110 GURL pending_entry_url_; | 122 GURL pending_entry_url_; |
111 | 123 |
112 // The |WindowSlider| that allows sliding history layers while the page is | 124 // We own the mechanism to animate the windows. |
113 // being reloaded. | 125 OverscrollWindowAnimation* owa_; |
mfomitchev
2015/03/05 23:37:06
Consider if ONO should own a separate instance of
Nina
2015/03/09 15:54:52
Yeah, this makes a lot of sense and will save many
| |
114 scoped_ptr<WindowSlider> window_slider_; | |
115 | 126 |
116 // Layer to be used for the final overlay fadeout animation when the overlay | 127 // The window that hosts the web contents. |
117 // is being dismissed. | 128 aura::Window* web_contents_window_; |
118 scoped_ptr<ui::Layer> overlay_dismiss_layer_; | |
119 | |
120 // The direction of the in-progress slide (if any). | |
121 SlideDirection slide_direction_; | |
122 | 129 |
123 // The LayerDelegate used for the back/front layers during a slide. | 130 // The LayerDelegate used for the back/front layers during a slide. |
124 scoped_ptr<ImageLayerDelegate> layer_delegate_; | 131 scoped_ptr<ImageLayerDelegate> layer_delegate_; |
125 | 132 |
133 // The layer schedule to dismiss. | |
134 scoped_ptr<ui::Layer> dismiss_layer_; | |
135 | |
126 DISALLOW_COPY_AND_ASSIGN(OverscrollNavigationOverlay); | 136 DISALLOW_COPY_AND_ASSIGN(OverscrollNavigationOverlay); |
127 }; | 137 }; |
128 | 138 |
129 } // namespace content | 139 } // namespace content |
130 | 140 |
131 #endif // CONTENT_BROWSER_WEB_CONTENTS_AURA_OVERSCROLL_NAVIGATION_OVERLAY_H_ | 141 #endif // CONTENT_BROWSER_WEB_CONTENTS_AURA_OVERSCROLL_NAVIGATION_OVERLAY_H_ |
OLD | NEW |