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

Side by Side Diff: Source/core/workers/WorkerGlobalScope.cpp

Issue 517213003: Oilpan: fix build after r181083 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Re-intro ~FrameConsole non-Oilpan Created 6 years, 3 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 | « Source/core/workers/WorkerGlobalScope.h ('k') | no next file » | 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) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved. 3 * Copyright (C) 2009, 2011 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 } 347 }
348 348
349 void WorkerGlobalScope::trace(Visitor* visitor) 349 void WorkerGlobalScope::trace(Visitor* visitor)
350 { 350 {
351 visitor->trace(m_console); 351 visitor->trace(m_console);
352 visitor->trace(m_location); 352 visitor->trace(m_location);
353 visitor->trace(m_navigator); 353 visitor->trace(m_navigator);
354 visitor->trace(m_workerInspectorController); 354 visitor->trace(m_workerInspectorController);
355 visitor->trace(m_eventQueue); 355 visitor->trace(m_eventQueue);
356 visitor->trace(m_workerClients); 356 visitor->trace(m_workerClients);
357 visitor->trace(m_messageStorage);
357 WillBeHeapSupplementable<WorkerGlobalScope>::trace(visitor); 358 WillBeHeapSupplementable<WorkerGlobalScope>::trace(visitor);
358 ExecutionContext::trace(visitor); 359 ExecutionContext::trace(visitor);
359 EventTargetWithInlineData::trace(visitor); 360 EventTargetWithInlineData::trace(visitor);
360 } 361 }
361 362
362 } // namespace blink 363 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/workers/WorkerGlobalScope.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698