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

Unified Diff: third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp

Issue 2629593004: Disambiguate LifecycleObserver::contextDestroyed (Closed)
Patch Set: temp Created 3 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: third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
diff --git a/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp b/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
index 26eb4fab81b79dea87b6d78d303eb5935904ddde..77c0ce17a2369290356d15bd872b5cb3c38f69a3 100644
--- a/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
+++ b/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
@@ -155,7 +155,7 @@ VibrationController* NavigatorVibration::controller(const LocalFrame& frame) {
return m_controller.get();
}
-void NavigatorVibration::contextDestroyed() {
+void NavigatorVibration::contextDestroyed(ExecutionContext*) {
if (m_controller) {
m_controller->cancel();
m_controller = nullptr;

Powered by Google App Engine
This is Rietveld 408576698