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

Side by Side Diff: third_party/WebKit/Source/core/dom/ExecutionContext.cpp

Issue 1851743002: Simplify Supplementables post Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component build Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2012 Google Inc. All Rights Reserved. 3 * Copyright (C) 2012 Google Inc. All Rights Reserved.
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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 return nullptr; 269 return nullptr;
270 } 270 }
271 271
272 void ExecutionContext::removeURLFromMemoryCache(const KURL& url) 272 void ExecutionContext::removeURLFromMemoryCache(const KURL& url)
273 { 273 {
274 memoryCache()->removeURLFromCache(url); 274 memoryCache()->removeURLFromCache(url);
275 } 275 }
276 276
277 DEFINE_TRACE(ExecutionContext) 277 DEFINE_TRACE(ExecutionContext)
278 { 278 {
279 #if ENABLE(OILPAN)
280 visitor->trace(m_publicURLManager); 279 visitor->trace(m_publicURLManager);
281 HeapSupplementable<ExecutionContext>::trace(visitor);
282 #endif
283 ContextLifecycleNotifier::trace(visitor); 280 ContextLifecycleNotifier::trace(visitor);
281 Supplementable<ExecutionContext>::trace(visitor);
284 } 282 }
285 283
286 } // namespace blink 284 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ExecutionContext.h ('k') | third_party/WebKit/Source/core/frame/Console.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698