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

Side by Side Diff: third_party/WebKit/Source/web/ChromeClientImpl.cpp

Issue 1895873006: compositor-worker: Initialize CW machinery plumbing to compositor and fire CW rAF callbacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary scope Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 { 1071 {
1072 if (m_webView->rootGraphicsLayer() && m_webView->layerTreeView()) 1072 if (m_webView->rootGraphicsLayer() && m_webView->layerTreeView())
1073 m_webView->page()->frameHost().visualViewport().registerLayersWithTreeVi ew(m_webView->layerTreeView()); 1073 m_webView->page()->frameHost().visualViewport().registerLayersWithTreeVi ew(m_webView->layerTreeView());
1074 } 1074 }
1075 1075
1076 void ChromeClientImpl::didUpdateTopControls() const 1076 void ChromeClientImpl::didUpdateTopControls() const
1077 { 1077 {
1078 m_webView->didUpdateTopControls(); 1078 m_webView->didUpdateTopControls();
1079 } 1079 }
1080 1080
1081 CompositorProxyClient* ChromeClientImpl::createCompositorProxyClient()
1082 {
1083 return m_webView->createCompositorProxyClient();
1084 }
1085
1081 void ChromeClientImpl::registerPopupOpeningObserver(PopupOpeningObserver* observ er) 1086 void ChromeClientImpl::registerPopupOpeningObserver(PopupOpeningObserver* observ er)
1082 { 1087 {
1083 DCHECK(observer); 1088 DCHECK(observer);
1084 m_popupOpeningObservers.append(observer); 1089 m_popupOpeningObservers.append(observer);
1085 } 1090 }
1086 1091
1087 void ChromeClientImpl::unregisterPopupOpeningObserver(PopupOpeningObserver* obse rver) 1092 void ChromeClientImpl::unregisterPopupOpeningObserver(PopupOpeningObserver* obse rver)
1088 { 1093 {
1089 size_t index = m_popupOpeningObservers.find(observer); 1094 size_t index = m_popupOpeningObservers.find(observer);
1090 DCHECK_NE(index, kNotFound); 1095 DCHECK_NE(index, kNotFound);
(...skipping 17 matching lines...) Expand all
1108 if (m_webView->pageImportanceSignals()) 1113 if (m_webView->pageImportanceSignals())
1109 m_webView->pageImportanceSignals()->setIssuedNonGetFetchFromScript(); 1114 m_webView->pageImportanceSignals()->setIssuedNonGetFetchFromScript();
1110 } 1115 }
1111 1116
1112 PassOwnPtr<WebFrameScheduler> ChromeClientImpl::createFrameScheduler(BlameContex t* blameContext) 1117 PassOwnPtr<WebFrameScheduler> ChromeClientImpl::createFrameScheduler(BlameContex t* blameContext)
1113 { 1118 {
1114 return adoptPtr(m_webView->scheduler()->createFrameScheduler(blameContext).r elease()); 1119 return adoptPtr(m_webView->scheduler()->createFrameScheduler(blameContext).r elease());
1115 } 1120 }
1116 1121
1117 } // namespace blink 1122 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698