| Index: third_party/WebKit/Source/core/page/Page.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/Page.cpp b/third_party/WebKit/Source/core/page/Page.cpp
|
| index 3ec85f1254f91bb4ac9abccee16d1df793bf00e3..075d596fc53ab41ae25b877e8b8eda859a3b7182 100644
|
| --- a/third_party/WebKit/Source/core/page/Page.cpp
|
| +++ b/third_party/WebKit/Source/core/page/Page.cpp
|
| @@ -58,14 +58,14 @@ namespace blink {
|
| // static
|
| WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<Page>>& Page::allPages()
|
| {
|
| - DEFINE_STATIC_LOCAL(WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<Page>>, allPages, ());
|
| + DEFINE_STATIC_LOCAL_NO_REGISTER(WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<Page>>, allPages, ());
|
| return allPages;
|
| }
|
|
|
| // static
|
| WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<Page>>& Page::ordinaryPages()
|
| {
|
| - DEFINE_STATIC_LOCAL(WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<Page>>, ordinaryPages, ());
|
| + DEFINE_STATIC_LOCAL_NO_REGISTER(WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<Page>>, ordinaryPages, ());
|
| return ordinaryPages;
|
| }
|
|
|
|
|