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