Changeset 64265 in webkit


Ignore:
Timestamp:
Jul 28, 2010 10:52:51 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-28 Kavita Kanetkar <kkanetkar@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: Enable UI for chromium's appcache inspection.
https://bugs.webkit.org/show_bug.cgi?id=43098

  • inspector/front-end/Settings.js: Removed appCacheEnabled.
  • inspector/front-end/StoragePanel.js: Removed appCacheEnabled condition. (WebInspector.StoragePanel): (WebInspector.StoragePanel.prototype.reset): (WebInspector.StoragePanel.prototype.addApplicationCache):

2010-07-28 Kavita Kanetkar <kkanetkar@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: Enable UI for chromium's appcache inspection.
https://bugs.webkit.org/show_bug.cgi?id=43098

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64262 r64265  
     12010-07-28  Kavita Kanetkar  <kkanetkar@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: Enable UI for chromium's appcache inspection.
     6        https://bugs.webkit.org/show_bug.cgi?id=43098
     7
     8        * inspector/front-end/Settings.js: Removed appCacheEnabled.
     9        * inspector/front-end/StoragePanel.js: Removed appCacheEnabled condition.
     10        (WebInspector.StoragePanel):
     11        (WebInspector.StoragePanel.prototype.reset):
     12        (WebInspector.StoragePanel.prototype.addApplicationCache):
     13
    1142010-07-28  Bryan Gislason  <bgislason@rim.com>
    215
  • trunk/WebCore/inspector/front-end/Settings.js

    r64037 r64265  
    4444    profilerAlwaysEnabled: false,
    4545    auditsPanelEnabled: true,
    46     appCacheEnabled: true
    4746}
    4847
  • trunk/WebCore/inspector/front-end/StoragePanel.js

    r63549 r64265  
    5050    this.cookieListTreeElement.expand();
    5151
    52     if (Preferences.appCacheEnabled) {
    53         this.applicationCacheListTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("APPLICATION CACHE"), {}, true);
    54         this.sidebarTree.appendChild(this.applicationCacheListTreeElement);
    55         this.applicationCacheListTreeElement.expand();
    56     }
    57 
     52   
     53    this.applicationCacheListTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("APPLICATION CACHE"), {}, true);
     54    this.sidebarTree.appendChild(this.applicationCacheListTreeElement);
     55    this.applicationCacheListTreeElement.expand();
     56   
    5857    this.storageViews = document.createElement("div");
    5958    this.storageViews.id = "storage-views";
     
    112111        this.cookieListTreeElement.removeChildren();
    113112
    114         if (Preferences.appCacheEnabled)
    115             this.applicationCacheListTreeElement.removeChildren();
     113        this.applicationCacheListTreeElement.removeChildren();
    116114
    117115        this.storageViews.removeChildren();
     
    151149    addApplicationCache: function(domain)
    152150    {
    153         if (!Preferences.appCacheEnabled)
    154             return;
    155151        var applicationCacheTreeElement = new WebInspector.ApplicationCacheSidebarTreeElement(domain);
    156152        this.applicationCacheListTreeElement.appendChild(applicationCacheTreeElement);
  • trunk/WebKit/chromium/ChangeLog

    r64260 r64265  
     12010-07-28  Kavita Kanetkar  <kkanetkar@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: Enable UI for chromium's appcache inspection.
     6        https://bugs.webkit.org/show_bug.cgi?id=43098
     7
     8        * src/js/DevTools.js:
     9        (WebInspector.loaded):
     10
    1112010-07-28  Dominic Mazzoni  <dmazzoni@google.com>
    212
  • trunk/WebKit/chromium/src/js/DevTools.js

    r64204 r64265  
    166166    Preferences.profilerAlwaysEnabled = true;
    167167    Preferences.canEditScriptSource = true;
    168     Preferences.appCacheEnabled = false;
    169 
     168   
    170169    if ("page" in WebInspector._paramsObject) {
    171170        WebInspector.loadedDone = true;
Note: See TracChangeset for help on using the changeset viewer.