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

Unified Diff: third_party/WebKit/Source/core/frame/ScreenOrientationController.cpp

Issue 2625043002: Use a new Supplement constructor in ScreenOrientationController (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/core/frame/ScreenOrientationController.cpp
diff --git a/third_party/WebKit/Source/core/frame/ScreenOrientationController.cpp b/third_party/WebKit/Source/core/frame/ScreenOrientationController.cpp
index e81041238ec1238ebe6363af89f351231326403f..9e35cecd49ab4e729fd97c43deb27d5a6eb9bb5f 100644
--- a/third_party/WebKit/Source/core/frame/ScreenOrientationController.cpp
+++ b/third_party/WebKit/Source/core/frame/ScreenOrientationController.cpp
@@ -6,6 +6,9 @@
namespace blink {
+ScreenOrientationController::ScreenOrientationController(LocalFrame& frame)
+ : Supplement<LocalFrame>(frame) {}
+
// static
ScreenOrientationController* ScreenOrientationController::from(
LocalFrame& frame) {

Powered by Google App Engine
This is Rietveld 408576698