| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |