| Index: third_party/WebKit/Source/modules/screen_orientation/ScreenScreenOrientation.cpp
|
| diff --git a/third_party/WebKit/Source/modules/screen_orientation/ScreenScreenOrientation.cpp b/third_party/WebKit/Source/modules/screen_orientation/ScreenScreenOrientation.cpp
|
| index ddf0947779d91bda704b397473cb688cb9c827a9..410fd87acaf1424f8b5a2e46eb78052c6aa072ec 100644
|
| --- a/third_party/WebKit/Source/modules/screen_orientation/ScreenScreenOrientation.cpp
|
| +++ b/third_party/WebKit/Source/modules/screen_orientation/ScreenScreenOrientation.cpp
|
| @@ -13,7 +13,7 @@ namespace blink {
|
| // static
|
| ScreenScreenOrientation& ScreenScreenOrientation::from(Screen& screen)
|
| {
|
| - ScreenScreenOrientation* supplement = static_cast<ScreenScreenOrientation*>(HeapSupplement<Screen>::from(screen, supplementName()));
|
| + ScreenScreenOrientation* supplement = static_cast<ScreenScreenOrientation*>(Supplement<Screen>::from(screen, supplementName()));
|
| if (!supplement) {
|
| supplement = new ScreenScreenOrientation();
|
| provideTo(screen, supplementName(), supplement);
|
| @@ -42,7 +42,7 @@ const char* ScreenScreenOrientation::supplementName()
|
| DEFINE_TRACE(ScreenScreenOrientation)
|
| {
|
| visitor->trace(m_orientation);
|
| - HeapSupplement<Screen>::trace(visitor);
|
| + Supplement<Screen>::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|