| Index: third_party/WebKit/Source/core/testing/InternalSettings.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/InternalSettings.cpp b/third_party/WebKit/Source/core/testing/InternalSettings.cpp
|
| index aae34cf7655fc57a15309cbab84eb95dea4b4fa3..b002f41a17c24d0b0c81de87bb33e995f21b6f58 100644
|
| --- a/third_party/WebKit/Source/core/testing/InternalSettings.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/InternalSettings.cpp
|
| @@ -102,9 +102,9 @@ void InternalSettings::Backup::restoreTo(Settings* settings)
|
|
|
| InternalSettings* InternalSettings::from(Page& page)
|
| {
|
| - if (!HeapSupplement<Page>::from(page, supplementName()))
|
| - HeapSupplement<Page>::provideTo(page, supplementName(), new InternalSettings(page));
|
| - return static_cast<InternalSettings*>(HeapSupplement<Page>::from(page, supplementName()));
|
| + if (!Supplement<Page>::from(page, supplementName()))
|
| + Supplement<Page>::provideTo(page, supplementName(), new InternalSettings(page));
|
| + return static_cast<InternalSettings*>(Supplement<Page>::from(page, supplementName()));
|
| }
|
| const char* InternalSettings::supplementName()
|
| {
|
|
|