File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ static synchronized void removeActiveWebView(WebViewClassic webview) {
8989 private void fireSharedTimer () {
9090 // clear the flag so that sharedTimerFired() can set a new timer
9191 mHasInstantTimer = false ;
92- removeMessages (TIMER_MESSAGE );
9392 sharedTimerFired ();
9493 }
9594
Original file line number Diff line number Diff line change @@ -2198,19 +2198,11 @@ void resumeWebKitDraw() {
21982198 mEventHub .sendMessage (Message .obtain (null , EventHub .WEBKIT_DRAW ));
21992199 }
22002200 m_skipDrawFlag = false ;
2201- m_skipDrawFlagLock .notify ();
22022201 }
22032202 }
22042203
22052204 private void webkitDraw () {
22062205 synchronized (m_skipDrawFlagLock ) {
2207- if (m_skipDrawFlag ) {
2208- try {
2209- // Aggressively throttle webkit to give the UI more CPU
2210- // to catch up with
2211- m_skipDrawFlagLock .wait (50 );
2212- } catch (InterruptedException e ) {}
2213- }
22142206 if (m_skipDrawFlag ) {
22152207 m_drawWasSkipped = true ;
22162208 return ;
You can’t perform that action at this time.
0 commit comments