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

Side by Side Diff: Source/core/inspector/InspectorController.cpp

Issue 471463002: Oilpan: trace part objects as per the GC plugin's wishes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/core/inspector/WorkerInspectorController.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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 visitor->trace(m_state); 137 visitor->trace(m_state);
138 visitor->trace(m_domAgent); 138 visitor->trace(m_domAgent);
139 visitor->trace(m_pageAgent); 139 visitor->trace(m_pageAgent);
140 visitor->trace(m_timelineAgent); 140 visitor->trace(m_timelineAgent);
141 visitor->trace(m_cssAgent); 141 visitor->trace(m_cssAgent);
142 visitor->trace(m_resourceAgent); 142 visitor->trace(m_resourceAgent);
143 visitor->trace(m_layerTreeAgent); 143 visitor->trace(m_layerTreeAgent);
144 visitor->trace(m_tracingAgent); 144 visitor->trace(m_tracingAgent);
145 visitor->trace(m_inspectorFrontendClient); 145 visitor->trace(m_inspectorFrontendClient);
146 visitor->trace(m_page); 146 visitor->trace(m_page);
147 m_agents.trace(visitor); 147 visitor->trace(m_agents);
148 } 148 }
149 149
150 PassOwnPtrWillBeRawPtr<InspectorController> InspectorController::create(Page* pa ge, InspectorClient* client) 150 PassOwnPtrWillBeRawPtr<InspectorController> InspectorController::create(Page* pa ge, InspectorClient* client)
151 { 151 {
152 return adoptPtrWillBeNoop(new InspectorController(page, client)); 152 return adoptPtrWillBeNoop(new InspectorController(page, client));
153 } 153 }
154 154
155 void InspectorController::setTextAutosizingEnabled(bool enabled) 155 void InspectorController::setTextAutosizingEnabled(bool enabled)
156 { 156 {
157 m_pageAgent->setTextAutosizingEnabled(enabled); 157 m_pageAgent->setTextAutosizingEnabled(enabled);
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 m_layerTreeAgent->willAddPageOverlay(layer); 502 m_layerTreeAgent->willAddPageOverlay(layer);
503 } 503 }
504 504
505 void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer) 505 void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer)
506 { 506 {
507 if (m_layerTreeAgent) 507 if (m_layerTreeAgent)
508 m_layerTreeAgent->didRemovePageOverlay(layer); 508 m_layerTreeAgent->didRemovePageOverlay(layer);
509 } 509 }
510 510
511 } // namespace blink 511 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/WorkerInspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698