aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/headers/device-memory/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/http/headers/device-memory/index.html')
-rw-r--r--files/pt-br/web/http/headers/device-memory/index.html84
1 files changed, 84 insertions, 0 deletions
diff --git a/files/pt-br/web/http/headers/device-memory/index.html b/files/pt-br/web/http/headers/device-memory/index.html
new file mode 100644
index 0000000000..73f2cc3185
--- /dev/null
+++ b/files/pt-br/web/http/headers/device-memory/index.html
@@ -0,0 +1,84 @@
+---
+title: Device-Memory
+slug: Web/HTTP/Headers/Device-Memory
+tags:
+ - Cabeçalho HTTP
+ - Client hints
+ - Device Memory API
+ - HTTP
+ - cabeçalho
+translation_of: Web/HTTP/Headers/Device-Memory
+---
+<div>{{HTTPSidebar}}{{securecontext_header}}{{SeeCompatTable}}</div>
+
+<p>O cabeçalho <code><strong>Device-Memory</strong></code> é um cabeçalho da <a href="/en-US/docs/Web/API/Device_Memory_API">Device Memory API</a> que funciona como os cabeçalhos <a href="/en-US/docs/Glossary/Client_hints">Client Hints</a> que representão a quantidade aproximada de RAM que o dispositivo do cliente possui.</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">Tipo de cabeçalho</th>
+ <td>{{Glossary("Request header")}}</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Forbidden header name")}}</th>
+ <td>?</td>
+ </tr>
+ </tbody>
+</table>
+
+<div class="blockIndicator note">
+<p><strong>Nota:</strong> Client Hints são acessíveis somente em origens seguras (via TLS). O servidor pode optar em receber o cabeçalho <code>Device-Memory</code> do cliente mandando os cabeçalhos de resposta {{HTTPHeader("Accept-CH")}} e {{HTTPHeader("Accept-CH-Lifetime")}}.</p>
+</div>
+
+<h2 id="Sintaxe">Sintaxe</h2>
+
+<p>A quantidade de RAM no dispositivo pode ser usada como variável de pegada, The amount of device RAM can be used as a fingerprinting variable, então os valores para este cabeçalho são intencionalmente grosseiros para reduzir potenciais usos indesejados. O cabeçalho pode ter os seguintes valores: <code>0.25</code>, <code>0.5</code>, <code>1</code>, <code>2</code>, <code>4</code>, <code>8</code>.</p>
+
+<pre class="syntaxbox notranslate">Device-Memory: &lt;number&gt;
+</pre>
+
+<h2 id="Exemplos">Exemplos</h2>
+
+<p>O servidor precisa primeiro optar por aceitar o cabeçalho <code>Device-Memory</code> mandando os cabeçalhos de resposta {{HTTPHeader("Accept-CH")}} contendo <code>Device-Memory</code> e {{HTTPHeader("Accept-CH-Lifetime")}}.</p>
+
+<pre class="notranslate">Accept-CH: Device-Memory
+Accept-CH-Lifetime: 86400
+</pre>
+
+<p>Então nas requisições subsequentes, o cliente enviará o cabeçalho <code>Device-Memory</code> de volta:</p>
+
+<pre class="notranslate">Device-Memory: 1
+</pre>
+
+<h2 id="Especificações">Especificações</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Especificação</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comentário</th>
+ </tr>
+ <tr>
+ <td>{{SpecName("Device Memory","#sec-device-memory-client-hint-header","Device-Memory")}}</td>
+ <td>{{Spec2('Device Memory')}}</td>
+ <td>Definição inicial.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilidade_de_navegador">Compatibilidade de navegador</h2>
+
+<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+
+<p>{{Compat("http.headers.Device-Memory")}}</p>
+
+<h2 id="Veja_também">Veja também</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web/API/Device_Memory_API">Device Memory API</a></li>
+ <li>{{HTTPHeader("Accept-CH")}}</li>
+ <li>{{HTTPHeader("Accept-CH-Lifetime")}}</li>
+ <li>{{HTTPHeader("Vary")}}</li>
+ <li>{{DOMxRef("Navigator.deviceMemory")}}</li>
+</ul>