| Index: chrome/browser/resources/about_memory_linux.html
|
| diff --git a/chrome/browser/resources/about_memory_linux.html b/chrome/browser/resources/about_memory_linux.html
|
| deleted file mode 100644
|
| index da7870ed43b9340de797c32f8bb4b5910a65193c..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/resources/about_memory_linux.html
|
| +++ /dev/null
|
| @@ -1,210 +0,0 @@
|
| -<!doctype html>
|
| -
|
| -<!--
|
| -about:memory template page
|
| --->
|
| -<html id="t">
|
| -<head>
|
| - <meta charset="utf-8">
|
| - <title>About Memory</title>
|
| -<if expr="is_android">
|
| - <meta name="viewport" content="width=device-width">
|
| -</if>
|
| - <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
|
| - <link rel="stylesheet" href="chrome://memory-redirect/about_memory.css">
|
| - <link rel="stylesheet" href="about_memory_linux.css">
|
| - <script src="chrome://resources/js/load_time_data.js"></script>
|
| - <script src="chrome://memory-redirect/memory.js"></script>
|
| - <script src="chrome://memory-redirect/strings.js"></script>
|
| -</head>
|
| -<body>
|
| - <div id="header">
|
| - <h1>About memory</h1>
|
| - <p>
|
| - Measuring memory usage in a multi-process browser
|
| - </p>
|
| - </div>
|
| -
|
| - <div id="content">
|
| - <h2>
|
| - Summary
|
| - <div class="help">
|
| - <div>
|
| - <p class="summary-desc" i18n-values=".innerHTML:summary_desc"></p>
|
| - </div>
|
| - </div>
|
| - </h2>
|
| -
|
| - <table class="list" id="browserComparison">
|
| - <colgroup>
|
| - <col class="name">
|
| - <col class="number">
|
| - <col class="number">
|
| - </colgroup>
|
| - <tr class="firstRow doNotFilter">
|
| - <th>
|
| - </th>
|
| - <th colspan="2">
|
| - Memory
|
| - <div class="help">
|
| - <div>
|
| - <p>
|
| - <strong>Memory</strong>
|
| - </p>
|
| - <p>
|
| - <strong>Private:</strong>
|
| - Resident memory size that is not shared with any other process.
|
| - This is the best indicator of browser memory resource usage.
|
| - </p>
|
| - <p>
|
| - <strong>Proportional:</strong>
|
| - Accounts for each page of memory as a fraction based on the number of
|
| - processes that have it mapped. Thus, for each page of memory mapped by two
|
| - processes, this sum will count half of the bytes towards each.
|
| - Therefore, this number is greater than the private count.
|
| - </p>
|
| -
|
| - <p><i>(Note that the memory for this tab is not included in the browser totals)</i></p>
|
| - </div>
|
| - </div>
|
| - </th>
|
| - </tr>
|
| - <tr class="secondRow doNotFilter">
|
| - <th class="name">
|
| - Browser
|
| - </th>
|
| - <th class="name">
|
| - Private
|
| - </th>
|
| - <th class="number">
|
| - Proportional
|
| - </th>
|
| - </tr>
|
| - <tr jsselect="browsers">
|
| - <td class="name">
|
| - <div>
|
| - <strong jscontent="name"></strong> <span jscontent="version"></span>
|
| - </div>
|
| - </td>
|
| - <td class="number">
|
| - <span class="th" jscontent="formatNumber(ws_priv)"></span><span class="k">k</span>
|
| - </td>
|
| - <td class="number">
|
| - <span class="th" jscontent="formatNumber(ws_shared)"></span><span class="k">k</span>
|
| - </td>
|
| - </tr>
|
| - </table>
|
| - <div class="otherbrowsers"
|
| - jsdisplay="show_other_browsers && browsers.length == 1">
|
| - Note: This page will show memory use for all running browsers,
|
| - not just Chrome.
|
| - </div>
|
| - <div class="otherbrowsers"
|
| - jsdisplay="show_other_browsers && browsers.length > 1">
|
| - Note: Chrome includes memory used by plugins, other browsers may not.
|
| - </div>
|
| -
|
| - <br><br><br>
|
| -
|
| - <h2>
|
| - Processes
|
| - <div class="help">
|
| - <div>
|
| - <p>
|
| - Details of memory usage for each of Chromium's processes.
|
| - </p>
|
| - </div>
|
| - </div>
|
| - </h2>
|
| -
|
| - <table class="list" id="memoryDetails">
|
| - <colgroup>
|
| - <col class="pid">
|
| - <col class="name" >
|
| - <col class="number">
|
| - <col class="number">
|
| - </colgroup>
|
| - <tr class="firstRow doNotFilter">
|
| - <th>
|
| - </th>
|
| - <th>
|
| - </th>
|
| - <th colspan="2">
|
| - Memory
|
| - </th>
|
| - </tr>
|
| - <tr class="secondRow doNotFilter">
|
| - <th class="pid">
|
| - PID
|
| - </th>
|
| - <th class="name">
|
| - Name
|
| - </th>
|
| - <th class="number">
|
| - Private
|
| - </th>
|
| - <th class="number">
|
| - Proportional
|
| - </th>
|
| - </tr>
|
| -
|
| - <tr jsselect="browzr_data">
|
| - <td class="pid">
|
| - <span class="th" jscontent="pid"></span>
|
| - </td>
|
| - <td class="name">
|
| - <div>
|
| - Browser
|
| - </div>
|
| - </td>
|
| - <td class="number">
|
| - <span class="th" jseval="addToSum('tot_ws_priv', $this.ws_priv)" jscontent="formatNumber(ws_priv)"></span><span class="k">k</span>
|
| - </td>
|
| - <td class="number">
|
| - <span class="th" jscontent="formatNumber(ws_shared)"></span><span class="k">k</span>
|
| - </td>
|
| - </tr>
|
| - <tr jsselect="child_data">
|
| - <td class="pid">
|
| - <span class="th" jscontent="pid"></span>
|
| - </td>
|
| - <td class="name">
|
| - <div jscontent="child_name"></div>
|
| - <div jsselect="titles">
|
| - <span jscontent="$this"></span><br>
|
| - </div>
|
| - </td>
|
| - <td class="number">
|
| - <span class="th" jseval="addToSum('tot_ws_priv', $this.ws_priv)" jscontent="formatNumber(ws_priv)"></span><span class="k">k</span>
|
| - </td>
|
| - <td class="number">
|
| - <span class="th" jscontent="formatNumber(ws_shared)"></span><span class="k">k</span>
|
| - </td>
|
| - </tr>
|
| - <tr class="total doNotFilter">
|
| - <td class="pid">
|
| - </td>
|
| - <td class="name">
|
| - Σ
|
| - </td>
|
| - <td class="number">
|
| - <span class="th" id="tot_ws_priv">0</span><span class="k">k</span>
|
| - </td>
|
| - <td class="number">
|
| - </td>
|
| - </tr>
|
| -
|
| - <tr class="noResults">
|
| - <td colspan="99">
|
| - No results found.
|
| - </td>
|
| - </tr>
|
| - </table>
|
| -
|
| - <div class="otherbrowsers">(The memory usage of our renderer processes is slightly less accurate when they are sandboxed.)</div>
|
| -
|
| - </div>
|
| - <script src="chrome://resources/js/i18n_template.js"></script>
|
| - <script src="chrome://resources/js/jstemplate_compiled.js"></script>
|
| -</body>
|
| -</html>
|
|
|