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

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

Issue 463543002: Oilpan: Ensure that classes with virtual trace methods always have vtables for their left-most base… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 visitor->trace(m_state); 135 visitor->trace(m_state);
136 visitor->trace(m_domAgent); 136 visitor->trace(m_domAgent);
137 visitor->trace(m_pageAgent); 137 visitor->trace(m_pageAgent);
138 visitor->trace(m_timelineAgent); 138 visitor->trace(m_timelineAgent);
139 visitor->trace(m_cssAgent); 139 visitor->trace(m_cssAgent);
140 visitor->trace(m_resourceAgent); 140 visitor->trace(m_resourceAgent);
141 visitor->trace(m_layerTreeAgent); 141 visitor->trace(m_layerTreeAgent);
142 visitor->trace(m_tracingAgent); 142 visitor->trace(m_tracingAgent);
143 visitor->trace(m_inspectorFrontendClient); 143 visitor->trace(m_inspectorFrontendClient);
144 visitor->trace(m_page); 144 visitor->trace(m_page);
145 m_agents.trace(visitor); 145 visitor->trace(m_agents);
146 } 146 }
147 147
148 PassOwnPtrWillBeRawPtr<InspectorController> InspectorController::create(Page* pa ge, InspectorClient* client) 148 PassOwnPtrWillBeRawPtr<InspectorController> InspectorController::create(Page* pa ge, InspectorClient* client)
149 { 149 {
150 return adoptPtrWillBeNoop(new InspectorController(page, client)); 150 return adoptPtrWillBeNoop(new InspectorController(page, client));
151 } 151 }
152 152
153 void InspectorController::setTextAutosizingEnabled(bool enabled) 153 void InspectorController::setTextAutosizingEnabled(bool enabled)
154 { 154 {
155 m_pageAgent->setTextAutosizingEnabled(enabled); 155 m_pageAgent->setTextAutosizingEnabled(enabled);
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 m_layerTreeAgent->willAddPageOverlay(layer); 500 m_layerTreeAgent->willAddPageOverlay(layer);
501 } 501 }
502 502
503 void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer) 503 void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer)
504 { 504 {
505 if (m_layerTreeAgent) 505 if (m_layerTreeAgent)
506 m_layerTreeAgent->didRemovePageOverlay(layer); 506 m_layerTreeAgent->didRemovePageOverlay(layer);
507 } 507 }
508 508
509 } // namespace blink 509 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698