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

Side by Side Diff: Source/modules/screen_orientation/ScreenOrientationController.cpp

Issue 595783003: Make ScreenOrientationController a FrameDestructionObserver. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientationController.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "config.h" 5 #include "config.h"
6 #include "modules/screen_orientation/ScreenOrientationController.h" 6 #include "modules/screen_orientation/ScreenOrientationController.h"
7 7
8 #include "core/events/Event.h" 8 #include "core/events/Event.h"
9 #include "core/frame/FrameView.h" 9 #include "core/frame/FrameView.h"
10 #include "core/frame/LocalFrame.h" 10 #include "core/frame/LocalFrame.h"
(...skipping 17 matching lines...) Expand all
28 ScreenOrientationController* controller = new ScreenOrientationController(fr ame, client); 28 ScreenOrientationController* controller = new ScreenOrientationController(fr ame, client);
29 WillBeHeapSupplement<LocalFrame>::provideTo(frame, supplementName(), adoptPt rWillBeNoop(controller)); 29 WillBeHeapSupplement<LocalFrame>::provideTo(frame, supplementName(), adoptPt rWillBeNoop(controller));
30 } 30 }
31 31
32 ScreenOrientationController* ScreenOrientationController::from(LocalFrame& frame ) 32 ScreenOrientationController* ScreenOrientationController::from(LocalFrame& frame )
33 { 33 {
34 return static_cast<ScreenOrientationController*>(WillBeHeapSupplement<LocalF rame>::from(frame, supplementName())); 34 return static_cast<ScreenOrientationController*>(WillBeHeapSupplement<LocalF rame>::from(frame, supplementName()));
35 } 35 }
36 36
37 ScreenOrientationController::ScreenOrientationController(LocalFrame& frame, WebS creenOrientationClient* client) 37 ScreenOrientationController::ScreenOrientationController(LocalFrame& frame, WebS creenOrientationClient* client)
38 : PlatformEventController(frame.page()) 38 : FrameDestructionObserver(&frame)
39 , PlatformEventController(frame.page())
39 , m_client(client) 40 , m_client(client)
40 , m_frame(frame)
41 , m_dispatchEventTimer(this, &ScreenOrientationController::dispatchEventTime rFired) 41 , m_dispatchEventTimer(this, &ScreenOrientationController::dispatchEventTime rFired)
42 { 42 {
43 } 43 }
44 44
45 const char* ScreenOrientationController::supplementName() 45 const char* ScreenOrientationController::supplementName()
46 { 46 {
47 return "ScreenOrientationController"; 47 return "ScreenOrientationController";
48 } 48 }
49 49
50 // Compute the screen orientation using the orientation angle and the screen wid th / height. 50 // Compute the screen orientation using the orientation angle and the screen wid th / height.
(...skipping 19 matching lines...) Expand all
70 return isTallDisplay ? WebScreenOrientationLandscapeSecondary : WebScree nOrientationPortraitPrimary; 70 return isTallDisplay ? WebScreenOrientationLandscapeSecondary : WebScree nOrientationPortraitPrimary;
71 default: 71 default:
72 ASSERT_NOT_REACHED(); 72 ASSERT_NOT_REACHED();
73 return WebScreenOrientationPortraitPrimary; 73 return WebScreenOrientationPortraitPrimary;
74 } 74 }
75 } 75 }
76 76
77 void ScreenOrientationController::updateOrientation() 77 void ScreenOrientationController::updateOrientation()
78 { 78 {
79 ASSERT(m_orientation); 79 ASSERT(m_orientation);
80 ASSERT(frame());
80 81
81 WebScreenOrientationType orientationType = screenOrientationType(m_frame.vie w()); 82 FrameView* view = frame()->view();
83 WebScreenOrientationType orientationType = screenOrientationType(view);
82 if (orientationType == WebScreenOrientationUndefined) { 84 if (orientationType == WebScreenOrientationUndefined) {
83 // The embedder could not provide us with an orientation, deduce it ours elves. 85 // The embedder could not provide us with an orientation, deduce it ours elves.
84 orientationType = computeOrientation(m_frame.view()); 86 orientationType = computeOrientation(view);
85 } 87 }
86 ASSERT(orientationType != WebScreenOrientationUndefined); 88 ASSERT(orientationType != WebScreenOrientationUndefined);
87 89
88 m_orientation->setType(orientationType); 90 m_orientation->setType(orientationType);
89 m_orientation->setAngle(screenOrientationAngle(m_frame.view())); 91 m_orientation->setAngle(screenOrientationAngle(view));
92 }
93
94 bool ScreenOrientationController::isActive() const
mlamouri (slow - plz ping) 2014/09/23 10:29:49 Could you rename this "isActiveAndVisible()"?
sof 2014/09/23 12:48:40 Done.
95 {
96 return m_orientation && frame() && page() && page()->visibilityState() == Pa geVisibilityStateVisible;
90 } 97 }
91 98
92 void ScreenOrientationController::pageVisibilityChanged() 99 void ScreenOrientationController::pageVisibilityChanged()
93 { 100 {
94 notifyDispatcher(); 101 notifyDispatcher();
95 102
96 if (!m_orientation || !page() || page()->visibilityState() != PageVisibility StateVisible) 103 if (!isActive())
97 return; 104 return;
98 105
99 // The orientation type and angle are tied in a way that if the angle has 106 // The orientation type and angle are tied in a way that if the angle has
100 // changed, the type must have changed. 107 // changed, the type must have changed.
101 unsigned short currentAngle = screenOrientationAngle(m_frame.view()); 108 unsigned short currentAngle = screenOrientationAngle(frame()->view());
102 109
103 // FIXME: sendOrientationChangeEvent() currently send an event all the 110 // FIXME: sendOrientationChangeEvent() currently send an event all the
104 // children of the frame, so it should only be called on the frame on 111 // children of the frame, so it should only be called on the frame on
105 // top of the tree. We would need the embedder to call 112 // top of the tree. We would need the embedder to call
106 // sendOrientationChangeEvent on every WebFrame part of a WebView to be 113 // sendOrientationChangeEvent on every WebFrame part of a WebView to be
107 // able to remove this. 114 // able to remove this.
108 if (m_frame == m_frame.localFrameRoot() && m_orientation->angle() != current Angle) 115 if (frame() == frame()->localFrameRoot() && m_orientation->angle() != curren tAngle)
109 notifyOrientationChanged(); 116 notifyOrientationChanged();
110 } 117 }
111 118
112 void ScreenOrientationController::notifyOrientationChanged() 119 void ScreenOrientationController::notifyOrientationChanged()
113 { 120 {
114 ASSERT(RuntimeEnabledFeatures::screenOrientationEnabled()); 121 ASSERT(RuntimeEnabledFeatures::screenOrientationEnabled());
115 122
116 if (!m_orientation || !page() || page()->visibilityState() != PageVisibility StateVisible) 123 if (!isActive())
117 return; 124 return;
118 125
119 updateOrientation(); 126 updateOrientation();
120 127
121 // Keep track of the frames that need to be notified before notifying the 128 // Keep track of the frames that need to be notified before notifying the
122 // current frame as it will prevent side effects from the change event 129 // current frame as it will prevent side effects from the change event
123 // handlers. 130 // handlers.
124 WillBeHeapVector<RefPtrWillBeMember<LocalFrame> > childFrames; 131 WillBeHeapVector<RefPtrWillBeMember<LocalFrame> > childFrames;
125 for (Frame* child = m_frame.tree().firstChild(); child; child = child->tree( ).nextSibling()) { 132 for (Frame* child = frame()->tree().firstChild(); child; child = child->tree ().nextSibling()) {
126 if (child->isLocalFrame()) 133 if (child->isLocalFrame())
127 childFrames.append(toLocalFrame(child)); 134 childFrames.append(toLocalFrame(child));
128 } 135 }
129 136
130 // Notify current orientation object. 137 // Notify current orientation object.
131 if (!m_dispatchEventTimer.isActive()) 138 if (!m_dispatchEventTimer.isActive())
132 m_dispatchEventTimer.startOneShot(0, FROM_HERE); 139 m_dispatchEventTimer.startOneShot(0, FROM_HERE);
133 140
134 // ... and child frames, if they have a ScreenOrientationController. 141 // ... and child frames, if they have a ScreenOrientationController.
135 for (size_t i = 0; i < childFrames.size(); ++i) { 142 for (size_t i = 0; i < childFrames.size(); ++i) {
(...skipping 15 matching lines...) Expand all
151 ASSERT(m_client); 158 ASSERT(m_client);
152 m_client->lockOrientation(orientation, callback); 159 m_client->lockOrientation(orientation, callback);
153 } 160 }
154 161
155 void ScreenOrientationController::unlock() 162 void ScreenOrientationController::unlock()
156 { 163 {
157 ASSERT(m_client); 164 ASSERT(m_client);
158 m_client->unlockOrientation(); 165 m_client->unlockOrientation();
159 } 166 }
160 167
161 const LocalFrame& ScreenOrientationController::frame() const
162 {
163 return m_frame;
164 }
165
166 void ScreenOrientationController::dispatchEventTimerFired(Timer<ScreenOrientatio nController>*) 168 void ScreenOrientationController::dispatchEventTimerFired(Timer<ScreenOrientatio nController>*)
167 { 169 {
168 if (!m_orientation) 170 if (!m_orientation)
169 return; 171 return;
170 m_orientation->dispatchEvent(Event::create(EventTypeNames::change)); 172 m_orientation->dispatchEvent(Event::create(EventTypeNames::change));
171 } 173 }
172 174
173 void ScreenOrientationController::didUpdateData() 175 void ScreenOrientationController::didUpdateData()
174 { 176 {
175 // Do nothing. 177 // Do nothing.
(...skipping 18 matching lines...) Expand all
194 { 196 {
195 if (m_orientation && page()->visibilityState() == PageVisibilityStateVisible ) 197 if (m_orientation && page()->visibilityState() == PageVisibilityStateVisible )
196 startUpdating(); 198 startUpdating();
197 else 199 else
198 stopUpdating(); 200 stopUpdating();
199 } 201 }
200 202
201 void ScreenOrientationController::trace(Visitor* visitor) 203 void ScreenOrientationController::trace(Visitor* visitor)
202 { 204 {
203 visitor->trace(m_orientation); 205 visitor->trace(m_orientation);
206 FrameDestructionObserver::trace(visitor);
204 WillBeHeapSupplement<LocalFrame>::trace(visitor); 207 WillBeHeapSupplement<LocalFrame>::trace(visitor);
205 } 208 }
206 209
207 } // namespace blink 210 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientationController.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698