Changeset 59231 in webkit


Ignore:
Timestamp:
May 12, 2010 7:22:06 AM (14 years ago)
Author:
Simon Hausmann
Message:

Add a comment to explain the web inspector dynamic property url hook
and that it's there on purpose :)

Reviewed by Laszlo Gombos.

https://bugs.webkit.org/show_bug.cgi?id=35340

  • WebCoreSupport/InspectorClientQt.cpp:

(WebCore::InspectorClientQt::openInspectorFrontend):

Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r59163 r59231  
     12010-05-12  Simon Hausmann  <simon.hausmann@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        Add a comment to explain the web inspector dynamic property url hook
     6        and that it's there on purpose :)
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=35340
     9
     10        * WebCoreSupport/InspectorClientQt.cpp:
     11        (WebCore::InspectorClientQt::openInspectorFrontend):
     12
    1132010-05-11  Antonio Gomes  <tonikitoo@webkit.org>
    214
  • trunk/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp

    r58876 r59231  
    9090
    9191    QWebInspector* inspector = m_inspectedWebPage->d->getOrCreateInspector();
     92    // This is a known hook that allows changing the default URL for the
     93    // Web inspector. This is used for SDK purposes. Please keep this hook
     94    // around and don't remove it.
     95    // https://bugs.webkit.org/show_bug.cgi?id=35340
    9296    QUrl inspectorUrl = inspector->property("_q_inspectorUrl").toUrl();
    9397    if (!inspectorUrl.isValid())
Note: See TracChangeset for help on using the changeset viewer.