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

Side by Side Diff: Source/core/frame/DOMWindow.h

Issue 197283036: Oilpan: have WebPerformance use transition types. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 | Source/web/WebPerformance.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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 mutable RefPtr<Location> m_location; 356 mutable RefPtr<Location> m_location;
357 mutable RefPtr<StyleMedia> m_media; 357 mutable RefPtr<StyleMedia> m_media;
358 358
359 String m_status; 359 String m_status;
360 String m_defaultStatus; 360 String m_defaultStatus;
361 361
362 mutable RefPtrWillBePersistent<Storage> m_sessionStorage; 362 mutable RefPtrWillBePersistent<Storage> m_sessionStorage;
363 mutable RefPtrWillBePersistent<Storage> m_localStorage; 363 mutable RefPtrWillBePersistent<Storage> m_localStorage;
364 mutable RefPtr<ApplicationCache> m_applicationCache; 364 mutable RefPtr<ApplicationCache> m_applicationCache;
365 365
366 mutable RefPtr<Performance> m_performance; 366 mutable RefPtrWillBePersistent<Performance> m_performance;
367 367
368 mutable RefPtr<DOMWindowCSS> m_css; 368 mutable RefPtr<DOMWindowCSS> m_css;
369 369
370 RefPtr<DOMWindowEventQueue> m_eventQueue; 370 RefPtr<DOMWindowEventQueue> m_eventQueue;
371 RefPtr<SerializedScriptValue> m_pendingStateObject; 371 RefPtr<SerializedScriptValue> m_pendingStateObject;
372 }; 372 };
373 373
374 inline String DOMWindow::status() const 374 inline String DOMWindow::status() const
375 { 375 {
376 return m_status; 376 return m_status;
377 } 377 }
378 378
379 inline String DOMWindow::defaultStatus() const 379 inline String DOMWindow::defaultStatus() const
380 { 380 {
381 return m_defaultStatus; 381 return m_defaultStatus;
382 } 382 }
383 383
384 } // namespace WebCore 384 } // namespace WebCore
385 385
386 #endif // DOMWindow_h 386 #endif // DOMWindow_h
OLDNEW
« no previous file with comments | « no previous file | Source/web/WebPerformance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698