Changeset 109301 in webkit


Ignore:
Timestamp:
Feb 29, 2012 8:20:18 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry]Make about:cache feature available in release version.
https://bugs.webkit.org/show_bug.cgi?id=79866

Patch by Jason Liu <jason.liu@torchmobile.com.cn> on 2012-02-29
Reviewed by Antonio Gomes.

No tests.

  • platform/network/blackberry/NetworkJob.cpp:

(WebCore::NetworkJob::handleAbout):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109300 r109301  
     12012-02-29  Jason Liu  <jason.liu@torchmobile.com.cn>
     2
     3        [BlackBerry]Make about:cache feature available in release version.
     4        https://bugs.webkit.org/show_bug.cgi?id=79866
     5
     6        Reviewed by Antonio Gomes.
     7
     8        No tests.
     9        * platform/network/blackberry/NetworkJob.cpp:
     10        (WebCore::NetworkJob::handleAbout):
     11
    1122012-02-29  James Simonsen  <simonjam@chromium.org>
    213
  • trunk/Source/WebCore/platform/network/blackberry/NetworkJob.cpp

    r108601 r109301  
    912912        result.append(String("</body></html>"));
    913913        handled = true;
    914 #if !defined(PUBLIC_BUILD) || !PUBLIC_BUILD
    915914    } else if (aboutWhat.startsWith("cache?query=", false)) {
    916915        BlackBerry::Platform::Client* client = BlackBerry::Platform::Client::get();
     
    930929        result.append(String("</body></html>"));
    931930        handled = true;
     931#if !defined(PUBLIC_BUILD) || !PUBLIC_BUILD
    932932    } else if (equalIgnoringCase(aboutWhat, "cache/disable")) {
    933933        BlackBerry::Platform::Client* client = BlackBerry::Platform::Client::get();
Note: See TracChangeset for help on using the changeset viewer.