summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/index.html
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-28 16:13:32 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-28 16:13:32 +0000
commit5333388fea438aaa9a797548f6e26c5105009b5a (patch)
tree175c6d9311d44019703cc7721dd1df5c46ffbc99 /chrome/browser/resources/net_internals/index.html
parentaaa72e79db2cda858908164f9e7aec4dbc8e14de (diff)
downloadchromium_src-5333388fea438aaa9a797548f6e26c5105009b5a.zip
chromium_src-5333388fea438aaa9a797548f6e26c5105009b5a.tar.gz
chromium_src-5333388fea438aaa9a797548f6e26c5105009b5a.tar.bz2
Change the overall appearance of about:net-internals:
- The main tabs are now organized vertically rather than horizontally. - Add a small bar at the top indicating if in capture mode, or file mode. Review URL: http://codereview.chromium.org/7482020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94471 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/net_internals/index.html')
-rw-r--r--chrome/browser/resources/net_internals/index.html52
1 files changed, 33 insertions, 19 deletions
diff --git a/chrome/browser/resources/net_internals/index.html b/chrome/browser/resources/net_internals/index.html
index dda8a67..26a8ebb 100644
--- a/chrome/browser/resources/net_internals/index.html
+++ b/chrome/browser/resources/net_internals/index.html
@@ -15,26 +15,40 @@ found in the LICENSE file.
</head>
<body id=dataViewDropTarget>
+ <div id=statusViewId>
+ <!-- We use a different status bar when in capture mode vs file mode -->
+ <div id=statusViewForCapture>
+ <!-- TODO(eroman): Move the actively captured events count to here. -->
+ Recording...
+ </div>
+
+ <div id=statusViewForFile style="display:none">
+ Displaying log file (<span id='statusViewDumpFileName'></span>)
+ </div>
+ </div>
+
<!-- Tab switcher for main categories. -->
- <div id=categoryTabHandles>
- <ul>
- <li><a href="#data" id=dataTab>Data</a></li>
- <li><a href="#proxy" id=proxyTab>Proxy</a></li>
- <li><a href="#events" id=eventsTab>Events</a></li>
- <li><a href="#dns" id=dnsTab>DNS</a></li>
- <li><a href="#sockets" id=socketsTab>Sockets</a></li>
- <li><a href="#spdy" id=spdyTab>SPDY</a></li>
- <li><a href="#httpCache" id=httpCacheTab>HTTP Cache</a></li>
- <li><a href="#httpThrottling" id=httpThrottlingTab>HTTP Throttling</a></li>
- <!-- Tab is only shown on Windows -->
- <li><a href="#serviceProviders" id=serviceProvidersTab style="display: none;">SPIs</a></li>
- <li><a href="#tests" id=testTab>Tests</a></li>
- <li><a href="#hsts" id=hstsTab>HSTS</a></li>
- <li><a href="#logs" id=logsTab style="display: none;">Logs</a></li>
- <li><a href="#prerender" id=prerenderTab>Prerender</a></li>
- </ul>
- <div style="clear: both;"></div>
+ <div id=categoryTabHandles class="tab-switcher-view">
+ <a href="#data" id=dataTab>Data</a>
+ <a href="#proxy" id=proxyTab>Proxy</a>
+ <a href="#events" id=eventsTab>Events</a>
+ <a href="#dns" id=dnsTab>DNS</a>
+ <a href="#sockets" id=socketsTab>Sockets</a>
+ <a href="#spdy" id=spdyTab>SPDY</a>
+ <a href="#httpCache" id=httpCacheTab>HTTP Cache</a>
+ <a href="#httpThrottling" id=httpThrottlingTab>HTTP Throttling</a>
+ <!-- Tab is only shown on Windows -->
+ <a href="#serviceProviders" id=serviceProvidersTab style="display: none;">SPIs</a>
+ <a href="#tests" id=testTab>Tests</a>
+ <a href="#hsts" id=hstsTab>HSTS</a>
+ <!-- Tab is only shown on ChromeOS -->
+ <a href="#logs" id=logsTab style="display: none;">Logs</a>
+ <a href="#prerender" id=prerenderTab>Prerender</a>
</div>
+
+ <!-- Splitter Box: This is a handle to resize the vertical divider -->
+ <div id=splitterBoxForMainTabs class=splitterBox></div>
+
<!-- Proxy info -->
<div id=proxyTabContent>
<h4>
@@ -413,7 +427,7 @@ found in the LICENSE file.
<input type=button value="Delete all" id=deleteAll />
</div>
<!-- Splitter Box: This is a handle to resize the vertical divider -->
- <div id=splitterBox></div>
+ <div id=splitterBoxForEventDetails class=splitterBox></div>
<!-- Details box: This is the panel on the right which shows information -->
<div id=detailsTabHandles>
<table class=tabSwitcher cellspacing=0>