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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalDOMWindow.h

Issue 2625953002: Move LocalDomWindow unusedPreloadsTimer to TaskRunnerTimer (Closed)
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 void dispose(); 256 void dispose();
257 257
258 void dispatchLoadEvent(); 258 void dispatchLoadEvent();
259 void clearDocument(); 259 void clearDocument();
260 260
261 void willDetachFrameHost(); 261 void willDetachFrameHost();
262 262
263 Member<LocalFrame> m_frame; 263 Member<LocalFrame> m_frame;
264 Member<Document> m_document; 264 Member<Document> m_document;
265 Member<DOMVisualViewport> m_visualViewport; 265 Member<DOMVisualViewport> m_visualViewport;
266 Timer<LocalDOMWindow> m_unusedPreloadsTimer; 266 TaskRunnerTimer<LocalDOMWindow> m_unusedPreloadsTimer;
267 267
268 bool m_shouldPrintWhenFinishedLoading; 268 bool m_shouldPrintWhenFinishedLoading;
269 269
270 HeapHashSet<WeakMember<DOMWindowProperty>> m_properties; 270 HeapHashSet<WeakMember<DOMWindowProperty>> m_properties;
271 271
272 mutable Member<Screen> m_screen; 272 mutable Member<Screen> m_screen;
273 mutable Member<History> m_history; 273 mutable Member<History> m_history;
274 mutable Member<BarProp> m_locationbar; 274 mutable Member<BarProp> m_locationbar;
275 mutable Member<BarProp> m_menubar; 275 mutable Member<BarProp> m_menubar;
276 mutable Member<BarProp> m_personalbar; 276 mutable Member<BarProp> m_personalbar;
(...skipping 26 matching lines...) Expand all
303 return m_status; 303 return m_status;
304 } 304 }
305 305
306 inline String LocalDOMWindow::defaultStatus() const { 306 inline String LocalDOMWindow::defaultStatus() const {
307 return m_defaultStatus; 307 return m_defaultStatus;
308 } 308 }
309 309
310 } // namespace blink 310 } // namespace blink
311 311
312 #endif // LocalDOMWindow_h 312 #endif // LocalDOMWindow_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698