[webkit-reviews] review granted: [Bug 27541] Web Inspector: Split InspectorController into InspectorController and InspectorBackend : [Attachment 33418] Step 1

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jul 24 06:16:28 PDT 2009


Timothy Hatcher <timothy at hatcher.name> has granted Pavel Feldman
<pfeldman at chromium.org>'s request for review:
Bug 27541: Web Inspector: Split InspectorController into InspectorController
and InspectorBackend
https://bugs.webkit.org/show_bug.cgi?id=27541

Attachment 33418: Step 1
https://bugs.webkit.org/attachment.cgi?id=33418&action=review

------- Additional Comments from Timothy Hatcher <timothy at hatcher.name>

> +    if (m_inspectorController)
> +	   return m_inspectorController->resourceTrackingEnabled();
> +    else
> +	   return false;

This (and a few othe places) should be written like:

> +    if (m_inspectorController)
> +	   return m_inspectorController->resourceTrackingEnabled();
> +    return false;


More information about the webkit-reviews mailing list