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

Unified Diff: Source/core/loader/NavigationScheduler.h

Issue 1133303007: Oilpan: move NavigationScheduler's redirect actions onto the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 5 years, 7 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
« no previous file with comments | « no previous file | Source/core/loader/NavigationScheduler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/NavigationScheduler.h
diff --git a/Source/core/loader/NavigationScheduler.h b/Source/core/loader/NavigationScheduler.h
index 29446c24d976b0d852b3767f6daed9fb5eb996f4..4baf377af2f0c3e362a2ce47595300018272beac 100644
--- a/Source/core/loader/NavigationScheduler.h
+++ b/Source/core/loader/NavigationScheduler.h
@@ -93,13 +93,13 @@ private:
bool shouldScheduleNavigation(const String& url) const;
void timerFired(Timer<NavigationScheduler>*);
- void schedule(PassOwnPtr<ScheduledNavigation>);
+ void schedule(PassOwnPtrWillBeRawPtr<ScheduledNavigation>);
static bool mustLockBackForwardList(LocalFrame* targetFrame);
RawPtrWillBeMember<LocalFrame> m_frame;
Timer<NavigationScheduler> m_timer;
- OwnPtr<ScheduledNavigation> m_redirect;
+ OwnPtrWillBeMember<ScheduledNavigation> m_redirect;
};
} // namespace blink
« no previous file with comments | « no previous file | Source/core/loader/NavigationScheduler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698