| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |